初学者做习题
12.某人向银行贷款100万,以复利计算,利率8厘,若每月摊还3万元,请问几个月才可还清。
//某人向银行贷款100万,以复利计算,利率8厘,若每月摊还3万元,请问几个月还清
public class Xiti4q12 {
public static void main(String args[]) {
int i = 0;
// float k;
double n = 1000000;
do {
n = (n * (1 + 0.008)) - 30000;
i = i + 1;
System.out.println(n);
} while (n > 0);
System.out.println("还清贷款的时间是" + i + "月");
}
}
-----------------------------------------------------------
###########################################################
13.打印出下列的九九乘法表。
* |
---|----------------------------
1 | 1 2 3 4 5 6 7 8 9
2 | 2 4 6 8 10 12 14 16 18
3 | 3 6 9 12 15 18 21 24 27
4 | 4 8 12 16 20 24 28 32 36
5 | 5 10 15 20 25 30 35 40 45
6 | 6 12 18 24 30 36 42 48 54
7 | 7 14 21 28 35 42 49 56 63
8 | 8 16 24 32 40 48 56 64 72
9 | 9 18 27 36 45 54 63 72 81
//打印下列乘法表?
public class Xiti4q13 {
public static void main(String args[]) {
System.out.println("* |");
System.out.println("---|------------------------------"
+ "----------------------------------------");
for (int i = 1; i <= 9; i++) {
System.out.print(i + " |\t");
for (int j = 1; j <= 9; j++) {
System.out.print(i * j + "\t");
}
System.out.println("");
}
}
}
----------------------------------------------------
####################################################
14.由命令行输入一个正整数n,输出其所有因数。
//由命令行输入一个正整数n,输出其所有的因数
public class Xiti4q14 {
public static void main(String args[]){
int n= Integer.parseInt(args[0]);
for (int i=1 ; i<=n; i++)
if (n%i==0)
System.out.println(i +"是" +n +"的因数");
}
}
阅读(1299) | 评论(0) | 转发(0) |