1. 使用while循环,求1+11+111+1111+11111+111111。
public class Test {
public static void main(String[] args) {
int i = 0;
double n = 0;
double sum = 0;
while(i<6){
n = n+Math.pow(10,i);
sum =sum+n;
i++;
}
System.out.println("1+11+111+1111+11111+111111="+sum);
}
}
2. 求10的阶乘 1x2x3x4…x10.
public class Test {
public static void main(String[] args) {
int result = 1;
for(int i = 10;i > 0;i--){
result *= i;
}
System.out.println("10!="+result);
}
}
3. 求1+2+3……+1000的和,把和输出,计算每步结果中有多少个最后以8结尾的。
public class Test {
public static void main(String[] args) {
int sum = 0;
int n = 0;
for (int i = 1; i <= 1000; i++) {
sum += i;
if(sum%10 == 8){
n++;
}
}
System.out.println("1+2+3……+1000="+sum);
System.out.println("每步结果中以8结尾有"+n+"个.");
}
}
4. 计算1+2+3……,直到和大于500,程序退出,输出结果。
public class Test {
public static void main(String[] args) {
int sum = 0;
boolean bol = true;
for (int i = 1; i <= 1000; i++) {
while (bol) {
sum += i;
if (sum > 500) {
bol = false;
}
}
}
System.out.println("1+2+3……和大于500,结果=" + sum);
}
}
5. 输出下列图案
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
1 2 3 4 5 6
… … … … … … …
1 … … … … … … … … 10
public class Test {
public static void main(String[] args) {
for(int i = 1;i <= 10;i++){
for(int j = 1;j <= i;j++){
System.out.print(" "+j);
}
System.out.println();
}
}
}
6. 某人工资为6000/月,工资月增长率为0.5%,工作20年,共得到多少工资。
public class Test {
public static void main(String[] args) {
double allMoney = 6000;
double monthWages = 6000;
for(int i = 2;i <= 20*12;i++){
monthWages = monthWages+monthWages*Math.pow(0.005, i-1);
while语句的嵌套流程图 allMoney += monthWages;
}
System.out.println("工作20年工资="+allMoney);
}
}
7. 100到200之间,所有能被5或6整除,但不能同时整除的数,每行显示10个。
public class Test {
public static void main(String[] args) {
int j = 1;
for (int i = 100; i <= 200; i++) {
if (i % 5 == 0 || i % 6 == 0) {
if (i % 30 != 0) {
if (j < 10) {
System.out.print(i+" ");
j++;
} else {
System.out.println(i);
j = 1;
}
}
}
}
}
}
8. 打印乘法口诀表。
public class Test {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++) {
for(int j = 1;j <= i;j++){
System.out.print(j+"*"+i+"="+i*j+" ");
}
System.out.println();
}
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论