2021年4月11日
摘要: 一、 Scanner input =new Scanner(System.in); System.out.println("输入交换前a,b的值"); int a=input.nextInt(); int b=input.nextInt(); int c; System.out.println("a 阅读全文
posted @ 2021-04-11 21:26 李昌璇 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 上机练习:1.使用for循环计算1-100的和,除了以3结尾的那些数 int sum = 0; for (int i = 1; i <= 100; i++) { int j = i%10; if(j!=3){ sum = sum+i; } } System.out.println(sum); } } 阅读全文
posted @ 2021-04-11 21:11 李昌璇 阅读(23) 评论(0) 推荐(0) 编辑
  2021年4月5日
摘要: 上机练习 1.分别使用for循环,while循环,do循环求1到100之间所有能被3整除的整数的和。(知识点:循环语句) int sum=0; for(int i=1;i<=100;i++){ if(i%3==0){ sum+=i; } } System.out.println("sum="+sum 阅读全文
posted @ 2021-04-05 22:17 李昌璇 阅读(30) 评论(0) 推荐(0) 编辑
  2021年3月29日
摘要: 上机练习 1.输入一个年份,判断是不是闰年(能被4整除但不能被100整除,或者能被400整除) Scanner input=new Scanner(System.in); System.out.println("请输入年份"); int a=input.nextInt(); if(a%4==0 && 阅读全文
posted @ 2021-03-29 22:19 李昌璇 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 1.public class TestHello { /** * @param args */ public static void main(String[] args) { System.out.println("172110318李昌璇计算机1904"); } } 2.public class 阅读全文
posted @ 2021-03-29 13:17 李昌璇 阅读(21) 评论(0) 推荐(0) 编辑
  2021年3月14日
摘要: 1. public class test1 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int a,b,c,n; n=345; a=n/100; 阅读全文
posted @ 2021-03-14 23:48 李昌璇 阅读(47) 评论(0) 推荐(0) 编辑