java~中+=什么意思?
while(count<=100)total+=count;System.out.print["thesumofthenumber1-100is"];System.out...
while (count <=100) total += count; System.out.print["the sum of the number 1-100 is "]; System.out.printIn(total);
中total+=count,怎么理解啊~
在线等
要求和的话,此题编写过程有问题么~
ps:
上面还有两行:
// this code may contain errors
int count= 1, total; 展开
中total+=count,怎么理解啊~
在线等
要求和的话,此题编写过程有问题么~
ps:
上面还有两行:
// this code may contain errors
int count= 1, total; 展开
8个回答
展开全部
例如
int i = 100;
i = i + 100;
这时 i就是200;
同样也可以写成
i += 100;
其实就是 i = i + ... 的简写方式
当要给变量加上一个值并且赋给变量自身时,就可以用 += 的方式来简写
int i = 100;
i = i + 100;
这时 i就是200;
同样也可以写成
i += 100;
其实就是 i = i + ... 的简写方式
当要给变量加上一个值并且赋给变量自身时,就可以用 += 的方式来简写
更多追问追答
追问
那我求和1-100 的话~这里total默认是0?
其他有木有错误`
追答
你一开始声明过变量的话 就是声明的值;
如果是在类中的全局量的话 那么就是默认的值 也就是0;
之后每次做循环,total都会在自己之前的值加上一个count;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
相当于total=total+count;
即total的值加上count再赋给total
即total的值加上count再赋给total
追问
这样啊~,那这个怎么改比较好~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-11-01 · 知道合伙人数码行家
关注
展开全部
您好,提问者:
int i = 1;
int sum = 0;
sum = sum + i; //这个意思
sum += i; //这是简写
int i = 1;
int sum = 0;
sum = sum + i; //这个意思
sum += i; //这是简写
追问
那我求和1-100 的话~这里total默认是0?
其他有木有错误`
追答
你就知道+= 就等于 xx = xx + x
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-11-05
展开全部
Hi,I'm your teacher in XJTLU, who tought you CSE105.
My friend told me there are always some students ask my homework at here.
If you have any problem please come to my office ask me.I will teach you.
thanks.
hope you will have a good grade.
My friend told me there are always some students ask my homework at here.
If you have any problem please come to my office ask me.I will teach you.
thanks.
hope you will have a good grade.
追问
Thx a lot. I will.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
total += count相当于total=total+count;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询