2020年4月8日

摘要: 前言 本次博文是针对前三次面向对象程序设计作业的总结 作业包含Java语法的基本使用,Java对象和方法的认识,面向对象设计方法的认识。 1作业过程总结 ①总结三次作业之间的迭代关系 第一次到第三次作业,难度逐渐上升。 第一次作业:主要考察的是Java语法的基本使用,主要是if-else的嵌套,fo 阅读全文
posted @ 2020-04-08 21:34 xyx's 阅读(163) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner( 阅读全文
posted @ 2020-04-08 21:16 xyx's 阅读(591) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); int year = 0; int month 阅读全文
posted @ 2020-04-08 21:13 xyx's 阅读(635) 评论(0) 推荐(1) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); int year = 0; int month 阅读全文
posted @ 2020-04-08 21:11 xyx's 阅读(1000) 评论(1) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner( 阅读全文
posted @ 2020-04-08 21:09 xyx's 阅读(403) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner( 阅读全文
posted @ 2020-04-08 21:05 xyx's 阅读(263) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { static int year; static int month; static int day; public static void main(String[] args) { // TODO Auto 阅读全文
posted @ 2020-04-08 21:04 xyx's 阅读(207) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner( 阅读全文
posted @ 2020-04-08 21:02 xyx's 阅读(711) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner( 阅读全文
posted @ 2020-04-08 21:00 xyx's 阅读(498) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.Scanner; public class Main { private static Scanner input; public static void main(String[] args) { Array 阅读全文
posted @ 2020-04-08 20:58 xyx's 阅读(190) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner triangle = new Scanner(System.in); double a=0,b=0,c=0; 阅读全文
posted @ 2020-04-08 20:56 xyx's 阅读(398) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner letter = new Scanner(System.in); String str; str=letter 阅读全文
posted @ 2020-04-08 20:55 xyx's 阅读(357) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner coor = new Scanner(System.in); double x,y; x=coor.nextD 阅读全文
posted @ 2020-04-08 20:54 xyx's 阅读(454) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner tax = new Scanner(System.in); int taxStatus; float taxM 阅读全文
posted @ 2020-04-08 20:52 xyx's 阅读(210) 评论(0) 推荐(0) 编辑

导航