Redian新闻
>
请教一个简单的java问题
avatar
l*3
2
我在NJ,在药厂工作2年
我们公司是这样的:
1)从宣布layoff回家开始,保持9周(两个月)payroll,这个叫notice-pay.
2)每工作一年给两周的pay,这个叫separation pay.
3)但是,1和2是重叠的,也就是说,我只能拿1,不能拿2,因为我的separation pay
不大于9周
这样,只工作了一天的人,和工作了4.5年的人,拿的是没有区别的。
我知道公司很抠门,但是不知道法律上是或否合理?
想问一下在NJ经历过layoff的朋友咨询一下,谢谢!
avatar
b*u
3
好看不?
avatar
b*s
4
1.86GHz Intel Core 2 Duo
2GB RAM
128GB Flash Storage
nVIDIA GeForce 320M GPU
13.3" Glossy Widescreen LED Display
FaceTime Webcam
Bluetooth 2.1+EDR
802.11n AirPort Extreme
899$的价格如何?另外和下面这台比起来呢
Apple 11.6" MacBook Air 1.6GHz, 4GB RAM, 128GB Flash Storage, NVIDIA GeForce
320M (Closeout Model - Installed w/ Mac OS Snow Leopard - FREE Upgrade to
Lion) (MC906LL/A)
848 after mail-in-rebate
各位看官给个意见,多谢
avatar
a*e
6
1. What is the output of the following code?
String barb = "BARBARA";
scramble(barb);
System.out.println(barb);
\The method scramble is defined as follows;
public String scramble (String str){
if (str.length() >= 2) {
int n = str.length() / 2;
str = scramble(str.substring(n)) + str.substring(0, n);
}
return str;
}
a. BARBARA
b. ARBABAR
c. AABAR
d. ARBABARB
e. ARABARBARB
觉得这段程序不能工作,大侠们给个意见?
avatar
s*y
7
is it the CAREER proposal?
avatar
T*u
8
package属于公司发善心。

pay

【在 l*******3 的大作中提到】
: 我在NJ,在药厂工作2年
: 我们公司是这样的:
: 1)从宣布layoff回家开始,保持9周(两个月)payroll,这个叫notice-pay.
: 2)每工作一年给两周的pay,这个叫separation pay.
: 3)但是,1和2是重叠的,也就是说,我只能拿1,不能拿2,因为我的separation pay
: 不大于9周
: 这样,只工作了一天的人,和工作了4.5年的人,拿的是没有区别的。
: 我知道公司很抠门,但是不知道法律上是或否合理?
: 想问一下在NJ经历过layoff的朋友咨询一下,谢谢!

avatar
z*e
9
贵!
avatar
s*o
10
春天到了,冬天还会远吗
avatar
w*w
11
run it!
avatar
d*u
12
哪个program?

【在 w*****e 的大作中提到】
: 给PM发信也不理,有人还在等的吗?
avatar
l*3
13

了解了 谢谢!

【在 T*****u 的大作中提到】
: package属于公司发善心。
:
: pay

avatar
R*N
14
都是old version 不值

GeForce

【在 b********s 的大作中提到】
: 1.86GHz Intel Core 2 Duo
: 2GB RAM
: 128GB Flash Storage
: nVIDIA GeForce 320M GPU
: 13.3" Glossy Widescreen LED Display
: FaceTime Webcam
: Bluetooth 2.1+EDR
: 802.11n AirPort Extreme
: 899$的价格如何?另外和下面这台比起来呢
: Apple 11.6" MacBook Air 1.6GHz, 4GB RAM, 128GB Flash Storage, NVIDIA GeForce

avatar
a*e
15
compile 过不了,不知道是不是打错什么。所以请大师们看看
avatar
l*3
16

welch village的绿道? lol

【在 T*****u 的大作中提到】
: package属于公司发善心。
:
: pay

avatar
a*e
17
我对java不了解,那个method看起来是个recursive call,会无限循环下去。
avatar
c*z
18
my company will only give 2 weeks' pay
avatar
s*o
19
what's the error then?
另外,你这个不管能不能编译,barb的值都应该是不会变的

【在 a****e 的大作中提到】
: compile 过不了,不知道是不是打错什么。所以请大师们看看
avatar
G*G
20
My company gives me nothing.

【在 c***z 的大作中提到】
: my company will only give 2 weeks' pay
avatar
s*i
21
divide and conquer to reverse a string.
avatar
l*3
22
All right, seems I am lucky then..
Thanks guys!!
avatar
a*e
23
貌似没divide,每次call完长度没变
avatar
f*l
24

pay
Do you have to work during the 9 week period?
If not, then it is pretty good. Basically you get 9 weeks of severance.
If you have to work, then you can just work a couple of hours each day, take
it esay.

【在 l*******3 的大作中提到】
: 我在NJ,在药厂工作2年
: 我们公司是这样的:
: 1)从宣布layoff回家开始,保持9周(两个月)payroll,这个叫notice-pay.
: 2)每工作一年给两周的pay,这个叫separation pay.
: 3)但是,1和2是重叠的,也就是说,我只能拿1,不能拿2,因为我的separation pay
: 不大于9周
: 这样,只工作了一天的人,和工作了4.5年的人,拿的是没有区别的。
: 我知道公司很抠门,但是不知道法律上是或否合理?
: 想问一下在NJ经历过layoff的朋友咨询一下,谢谢!

avatar
s*i
25
啊,对。看错了。
divide了但是只conquer一半。
所有答案是B


: 貌似没divide,每次call完长度没变



【在 a****e 的大作中提到】
: 貌似没divide,每次call完长度没变
avatar
l*3
26
no i don't have to work.
avatar
a*e
27
感觉这个call中断不了,因为长度没变,这样就死循环了。

【在 s*i 的大作中提到】
: 啊,对。看错了。
: divide了但是只conquer一半。
: 所有答案是B
:
:
: 貌似没divide,每次call完长度没变
:

avatar
a*e
28
另外这是中学的作业
avatar
w*j
29
鑰冪偣锛欽ava鐨凷tring object 鏄痠mmutable !!!
绛旀锛A
avatar
a*e
30
所以java call by value, barb 不会变?
等我有空在试试编译

【在 s***o 的大作中提到】
: what's the error then?
: 另外,你这个不管能不能编译,barb的值都应该是不会变的

avatar
a*e
31
多谢几位回复,看来答案没问题了。
不好意思,才发现里面method是我看错了括号位置了,scramble call string 长度在
变。这样就没什么问题了。
avatar
w*r
32
从程序后半段看,输出必须以bar结尾

【在 a****e 的大作中提到】
: 1. What is the output of the following code?
: String barb = "BARBARA";
: scramble(barb);
: System.out.println(barb);
: \The method scramble is defined as follows;
: public String scramble (String str){
: if (str.length() >= 2) {
: int n = str.length() / 2;
: str = scramble(str.substring(n)) + str.substring(0, n);
: }

avatar
s*o
33
String is a special kid in Java, as it's immutable.
如果这个题的目的是要测验scramble的效果,可以改成:
barb = scramble(barb);

【在 a****e 的大作中提到】
: 所以java call by value, barb 不会变?
: 等我有空在试试编译

avatar
m*u
34
lz的程序怎么通过编译的?
有这样几个问题:
1)scramble返回类型是String,调用程序是viod方式。
2) scramble是成员函数,没建立对象不能直接调用。
3)调用scramble之后因为没有变量接受这个值,main函数中的String在内存中没变化
。打印出来应该没变。
avatar
b*s
35
do your homework by urself

【在 a****e 的大作中提到】
: 1. What is the output of the following code?
: String barb = "BARBARA";
: scramble(barb);
: System.out.println(barb);
: \The method scramble is defined as follows;
: public String scramble (String str){
: if (str.length() >= 2) {
: int n = str.length() / 2;
: str = scramble(str.substring(n)) + str.substring(0, n);
: }

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。