bool=false;
else System.out.println(\月份必须在1~12:\ }
int start=2;
System.out.println(\日 一 二 三 四 五 六\ int i,n;
n=(start+day[m])%7;
for(i=0;i<=day[m+1]-day[m];i++) {
if(n%7==0)
System.out.println(); System.out.printf(\ n++; }
System.out.println(); }
}
3. 编写一个名为Exp2_3的java程序,从键盘输入一行文本,分别输出每个单词以及单词的数目。假设文本行只有字母和空格,每个单词由若干个字母组成,单词之间由一个或多个空格分隔。要求输出时每行显示一个单词。
package exp2_3;
import java.util.Scanner; public class Exp2_3 {
public static void main(String[] args) { String str;
Scanner in=new Scanner(System.in); System.out.println(\请输入一串文本\ str=in.nextLine(); System.out.println(str); int count=0;
boolean isSpace=true;
for(int i=0;i if(str.charAt(i)!=' ') { System.out.print(str.charAt(i)); isSpace=true; } else if(isSpace) { isSpace=false; System.out.println(); count++; } } if(str.charAt(str.length()-1)!=' ') count++; System.out.println(\共有\单词\\n\ } } 1.在该项目中新建一个java类:Box类,包括private成员变量length、width、heigth,public成员方法:设置与返回各成员变量的方法;构造方法。在主类的main方法中创建该类的对象,并输出其体积。 主类:package exp3; public class Exp3 { public static void main(String[] args) { Box b=new Box(2,2,2); int a=b.Value(); System.out.println(\体积a=\ } } Box类:package exp3; public class Box { private int length,width,heigth; public Box() { length=2; width=2; heigth=2; } public int Value() { return length*width*heigth; } public Box(int length, int width, int heigth) { this.length = length; this.width = width; this.heigth = heigth; } } 2.创建一个圆类Circle,在主类的主方法中创建该类对象,并输出圆的面积. package circle; public class Circle { int r; public static void main(String args[]) { Circle cirl=new Circle(2); System.out.println(cirl.r*cirl.r*3.14); } public Circle(int r) { this.r = r; } } 1.创建一个名为Exp4_1的项目。在该项目的exp4_1包中新建一个日期类Date,在Exp4_1中创建一个包:student,在该包中创建一个学生类:Stu,一个成绩类Score。 Exp4_1类:package exp4_1; import Student.*; public class Exp4_1 { public static void main(String[] args) { Date data=new Date(1998,1,22); System.out.println(data); Score score=new Score(87,99,88); System.out.println(score); Stu stu=new Stu(\小小\ stu.setBirthday(2121,1,1); stu.setScore(77,88,99); stu.printstu(); } } Date类:package exp4_1; public class Date {