编写一个程序,从键盘读取字符,直到接收到句点字符为止。程序要计算空格数量。在程序的末尾显示总数。
查看答案
已知if (x < 10)if (y > 100) {if (!done) x = z;else y = z;}else System.out.println("error"); //what if?请问最后一个else与哪个if语句相关?
写出计算从1000至0每次递减2的for循环语句。
下面的代码有效吗?for(int i = 0; i < num; i++)sum += i;count = i;