本人的JAVA期中考试题,分享给有需要的朋友,变量名和方法名 命名的都不规范 因为考试需要,仅供初学者参考

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class shuixianhua { // 齐勃涵
public static void qibohan(){
for (int i = 100; i < 1000; i++) {
int j = i % 10; //个
int k = i / 10 % 10; //十
int l = i / 100; //百
if (i==(j*j*j)+(k*k*k)+(l*l*l)) {
System.out.print(i + " ");
}
}
}
public static void main(String[] args) {
System.out.println("打印所有的水仙花数");
qibohan();
}
}

[caption id=”attachment_168” align=”alignright” width=”1159”] 水仙花[/caption]

2022-04-17

⬆︎TOP