最新回答 / 米基
public class HelloWorld{ public static void main(String[] args) { int a=16; double b=9.5; String str1="hello"; String str2="imooc"; System.out.println("a等于b:" + (a == b)); System.out.println("a大于b:" + (a > b)); System.out.println("a小于等于b:" ...
2018-11-19
最新回答 / 慕移动9181930
亲,这个课程没有ppt,字幕是后期加上去的。如果想学习mysql基础的话,建议看一下《与mysql的零距离接触》这门视频课程,适合零基础的小伙伴们学习,还可以跟着老湿一起练习语句
2018-11-19
最新回答 / 慕神6839130
循环部分用for public class HelloWord { public static void main(String[] args) { // 变量保存成绩 int score = 53; // 变量保存加分次数 int count = 0; //打印输出加分前成绩 System.out.println("加分前成绩:"+score); ...
2018-11-18
最赞回答 / qq_終奌傷起奌
int one = 10 ; int two = 20 ; int three = 0 ; three=one+two;//30 = 10 + 20; three+=one;// 30 += 10; 等于three= 30 +10;现在three的值为40 three-=one;// 40 -= 10; 等于three= 30 - 10;现在three的值为30 three*=one;// 30 *= 10; 等于th...
2018-11-18
最赞回答 / xiao肥瑞
第一步:计算3*8,结果为24;第二步:计算11+3*8,结果为35;第三步:计算(11 + 3 * 8) / 4,结果为8;第四步:8%3所取得的余数的2,可能你也跟我一样好奇余数为什么是2,因为8除以3就除不尽了,所以8除以2就能除得了,所以结果是2
2018-11-18
最赞回答 / Ibuki_suga
你是想用if(i > 10)来缩短9999999+的距离吧?,这样子不行的。为何你不用break语句呢a = a / 10;num++;if(a == 0){ break;}还有, if(a<=999999999 && a<=0)没错
2018-11-17