摘要: 编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 import java.util.Scanner;public class text3 { /** * @param args */ public static void main(String[] 阅读全文
posted @ 2021-04-16 15:31 吴宁 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1.使用for循环计算1-100的和,除了以3结尾的那些数 import java.util.Scanner;public class text2 { /** * @param args */ public static void main(String[] args) { // TODO Auto 阅读全文
posted @ 2021-04-11 16:10 吴宁 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 1.分别使用for循环,while循环,do循环求1到100之间所有能被3整除的整数的和 1. for: import java.util.Scanner; public class text2 { /** * @param args */ public static void main(Strin 阅读全文
posted @ 2021-04-04 16:33 吴宁 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1.输出学号班级和姓名 public class work1 { /** * @param args */ public static void main(String[] args) { System.out.println("193230230计算机1902吴宁"); } } 2.输出以下图形 阅读全文
posted @ 2021-03-26 18:15 吴宁 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1.输入一个年份,判断是不是闰年(能被4整除但不能被100整除,或者能被400整除) import java.util.Scanner; public class text { /** * @param args */ public static void main(String[] args) { 阅读全文
posted @ 2021-03-26 18:04 吴宁 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1.public class text2 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int r=4; double s=3.14*r*r; Sy 阅读全文
posted @ 2021-03-14 18:40 吴宁 阅读(31) 评论(0) 推荐(0) 编辑