课后作业
1.根据目录结构myjava\practice1\Foo.java,写出Foo类的包名
答案:包名应该命名
package myjava.practice1;
2.改写第12章中简答题第3题中的计算器类(Calculator),要求将加减乘除的方法改写成带参方法,再定义一个运算方法ope(),接收用户选择的运算和两个数字,根据用户选择的运算计算结果
代码如下:
public class Calculator2 { //计算类
int x; //计算结果
public int ope(int ae,int num1,int num2) { //计算方法ope
switch (ae) {
case 1:
x = num1+num2;
break;
case 2:
x = num1-num2;
break;
case 3:
x = num1*num2;
break;
case 4:
x = num1/num2;
break;
default:
System.out.println("输入正确的字符");
break;
}
return x;
}
}
import java.util.Scanner;
public class CalcTest { //测试类
public static void main(String[] args) {
// TODO Auto-generated method stub
Calculator2 ca2 = new Calculator2();
Scanner input = new Scanner(System.in);
System.out.print("请输入第一个数:");
int num1 = input.nextInt();
System.out.print("请输入第二个数:");
int num2 = input.nextInt();
System.out.print("请选择运算:1.加法 2.减法 3.乘法 4.除法:");
int ze = input.nextInt();
System.out.println("运算结果为:"+ca2.ope(ze, num1, num2));
}
}
3.模拟一个简单的购房商贷月供计算器,假设按照以下的公式计算出总利息和每月还款金额,
总利息 = 贷款金额 × 利率
每月还款金额 = (贷款金额 + 总利息) ÷ 贷款年限
贷款年限不同,利率是不相同的,规定只有三总年限,利率
年限:3年(36个月) ,利率:6.03%
年限:5年(60个月) ,利率:6.12%
年限:20年(240个月) ,利率:6.39%
代码如下:
public class Loan {
static int year; //定义年限
static double rate; //定义利率
static double amount;//定义每月还款金额
static double money; //定义总利息
//显示信息
public double loan(double loan,int yearchoice){
switch (yearchoice) {
case 1:
rate=0.0603;
year=36;
money=loan*rate;
break;
case 2:
rate=0.0612;
year=60;
money=loan*rate;
break;
case 3:
rate=0.0639;
year=240;
money=loan*rate;
break;
default:
System.out.println("规定只有三种年限!");
break;
}
amount=(loan+money)/year;
System.out.println("***月供为:"+amount);
return amount;
}
}
import java.util.*;
public class LoanTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
Loan sc = new Loan();
Scanner input = new Scanner (System.in);
System.out.print("请输入贷款金额:");
double loan = input.nextDouble();
System.out.print("\n请选择贷款年限:1. 3年(36个月) 2. 5年(60个月) 3. 20年(240个月):");
int yearchoice = input.nextInt();
sc.loan(loan, yearchoice);
}
}
4.根据指定不同的行以及字符,生成不同的三角形
代码如下:
public class LYAR {
public void printTriangle(int row,String ch){
for (int i = 0; i < row; i++) {
for (int j = 1; j <=i+1; j++) {
System.out.print(ch);
}
System.out.println(" ");
}
}
}
import java.util.*;
public class Test {
public static void main(String[] args) {
// TODO Auto-generated method stub
LYAR lyar = new LYAR();
Scanner input = new Scanner (System.in);
System.out.print("请输入行高:");
int row = input.nextInt();
System.out.print("请输入打印的字符:");
String ch = input.next();
lyar.printTriangle(row, ch);
}
}
5.根据三角形的三条边长,判断其是直角,钝角,还是锐角三角形,程序要求如下:
先输入三角形三条边的边长
判断是否构成三角形,构成三角形的条件是”任意两边之和大于第三边”,如果不能构成三角形则提示”不是三角形”
如果能构成三角形,判断三角形是何种三角形,如果三角形有一条边的平方等于其他两条边平方的和,则为直角三角形,如果有一条边的平方大于其他两条边平方的和,则为钝角三角形,否则为,直角三角形
代码如下:
public class triangle {
public boolean isTriangle(int a,int b,int c){
boolean flag = false;
if (a+b>c&&a+c>b&&b+c>a) {
return true;
}else {
System.out.println("这不能构成三角形");
}
return flag;
}
public String shape(int a, int b, int c){
String shape ="";
if ((a*a+b*b==c*c)||(a*a+c*c==b*b)||(c*c+b*b==a*a)) {
shape="直角三角形";
System.out.println("这是一个"+shape);
}else if((a==b)&&(b==c)){
shape ="等边三角形";
System.out.println("这是一个"+shape);
}else if(a*a+b*b>c){
shape = "锐角三角形";
System.out.println("这是一个"+shape);
}else if((a*a+b*b>c*c)||(a*a+c*c>b*b)||(c*c+b*b>a*a)){
shape = "钝角三角形";
System.out.println("这是一个"+shape);
}
return shape;
}
}
import java.util.*;
public class Test2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner (System.in);
String LYAR ="";
do {
triangle sc = new triangle();
System.out.print("请输入第一条边长:");
int a =input.nextInt();
System.out.print("请输入第二条边长:");
int b = input.nextInt();
System.out.print("请输入第三条边上:");
int c =input.nextInt();
sc.isTriangle(a, b, c);
sc.shape(a, b, c);
System.out.print("继续吗?(y/n):");
LYAR = input.next();
if(LYAR.equals("n")){
System.out.println("退出程序!");
break;
}
} while (LYAR.equals("y"));
}
}
6.编写向整型数组的指定位置插入元素,并输出插入前后数组的值
代码如下:
public class shuzu {
public void insertArray(int[] arr, int index, int value) {
int array[] = new int[arr.length + 1];
for (int i = 0; i < arr.length; i++) {
array[i] = arr[i];
}
for (int i = array.length - 1; i > index; i--) {
array[i] = array[i - 1];
}
array[index] = value;
System.out.println("插入后的数组:");
for (int i = 0; i < array.length; i++) {
if (array[i] != 0) {
System.out.print(array[i] + "\t");
}
}
}
}
//测试类
import java.util.*;
public class shuzuTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner(System.in);
shuzu sc = new shuzu();
int arr[] = new int[7];
arr[0] = 1;
arr[1] = 2;
arr[2] = 3;
arr[3] = 4;
arr[4] = 5;
arr[5] = 6;
arr[6] = 7;
System.out.println("插入前的数组:");
for (int i = 0; i < arr.length; i++) {
if (arr[i] != 0) {
System.out.print(arr[i] + "\t");
}
}
System.out.print("\n请输入要插入数组的位置:");
int index = input.nextInt();
System.out.print("请输入要插入的整数:");
int value = input.nextInt();
sc.insertArray(arr, index, value);
}
}
7.本学期期末学员共参加了三门课的考试,即Java,C# , SQL,编写方法计算每位同学三门课程的平均分
代码如下:
//三门课的成绩属性
public class Student {
int java; //Java成绩
int C; //C#成绩
int sql; //数据库成绩
}
//方法
public class StudentBiz {
Student[] student = new Student[30];
public void getAvg(Student stu) {
for (int i = 0; i < student.length; i++) {
if (student[i] == null) {
student[i] = stu;
break;
}
}
}
public void getavg(int arr[], int num) {
// 参数分别为:java成绩,c#成绩,数据库成绩,学生人数
double[] arr2 = new double[num + 1];
for (int i = 0; i < num + 1; i++) {
arr2[i] = arr[i] / 3.0;
}
for (int i = 0; i < arr2.length; i++) {
System.out.println("第" + (i + 1) + "位同学的平均分为:" + arr2[i]);
}
}
}
//学生测试类
import java.util.*;
public class StudentTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner(System.in);
Student stu[] = new Student[30]; // 创建学生类对象数组
StudentBiz stus = new StudentBiz(); // 创建StudentBiz类对象
Student student = new Student(); // 创建学生类对象
int js[] = new int[stu.length]; // 创建一个数组来接收每一个学生的总成绩
int index = 0; // 获取学生的人数
for (int i = 0; i < stu.length; i++) {
int tatleScore = 0; // 初始化总成绩并每次清零;
System.out.println("第" + (i + 1) + "位同学的成绩为:");
System.out.print("java成绩为:");
student.java = input.nextInt();
System.out.print("c#的成绩为:");
student.C = input.nextInt();
System.out.print("SQL的成绩为:");
student.sql = input.nextInt();
tatleScore = student.java + student.C + student.sql;
for (int j = 0; j < js.length; j++) { // 循环用数组接收总成绩
if (js[i] == 0) {
js[i] = tatleScore;
break;
}
}
System.out.print("是否继续输入(y/n):");
String flag = input.next();
System.out.println("");
stus.getAvg(student); // 调用方法增加学生信息
if (flag.equals("n")) {
index = i;
System.out.println("输入完成!");
break;
}
}
System.out.println("学生的平均分为:");
stus.getavg(js, index); // 调用方法
}
}