最新回答 / qq_不问过往_0
System.out.println("加分后成绩"+score)与System.out.println("加分后成绩”+"score")有什么区别
2018-02-04
已采纳回答 / 慕仔0066012
public class HelloWorld { public static void main(String[] args) { boolean a = true; // a同意 boolean b = false; // b反对 boolean c = false; // c反对 boolean d = true; // d同意 System.out.println(( a&&b )+"未通过");//下划线这个括号是中文的,要用英文的 }}
2018-02-04
已采纳回答 / qq_琪实不凡_0
因为int类型的数实际上用4个字节存储在计算机内,它表示的数的大小是有上限的,不能超过10位数,要想表示超过十位的数,可以使用long int 定义变量
2018-02-01
已采纳回答 / Herion丶
计算的同时就是在给three赋值int one = 10 ; int two = 20 ; int three = 0 ;three=one + two 跟 three =30是等价的。
2018-02-01