摘要:
while循环语句 根据条件来选择是否执行循环体内的执行语句 while语句会循环判断条件是否成立只要成立就会执行,直到条件不匹配循环结束 int a = 0; while(a<10){ a++; System.out.println(a); } 在上述代码中定义了一个变量a 判断如果a小于10就执 阅读全文
摘要:
for循环 for循环是编程语言中的一种循环语句,由循环体判定条件两部分组成 for循环的表达式为for(条件){执行体} 在编程中我们如果想计算一个数字到另一个数字之间的和,我们应该怎么计算呢? 我们最先想到的是一个一个打印出来相加,但是这样太麻烦了而且还会占用没必要的资源 现在我们就可用到for 阅读全文
摘要:
Scanner scanner = new Scanner(System.in);int i = scanner.nextInt();int i2 = scanner.nextInt();if (i>i2){ System.out.println("大"+i);}else{ System.out.p 阅读全文
摘要:
Scanner scanner = new Scanner(System.in); System.out.println("请投币"); Integer next = scanner.nextInt(); System.out.println(next>10); System.out.println 阅读全文
摘要:
比较 从计算机的角度来看,这就是意味着程序需要读取两条数据,或用户的两个输入,然后进行一些计算和判断,最后输出结果 public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.ou 阅读全文