-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path头歌-JAVA-答案.html
1359 lines (1087 loc) · 37 KB
/
头歌-JAVA-答案.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="WuTong" />
<meta name="description" content="無同的个人网站" />
<meta name="keywords" content="Personal website,WuTong,無同,个人网站" />
<title>头歌-JAVA-答案 | 無同的小屋</title>
<link rel="icon" href="../images/icon/favicon.png" />
<link rel="shortcut icon" href="../images/icon/favicon.png" />
<link rel="stylesheet" href="../css/md-style.css" />
<link rel="stylesheet" type="text/css" href="../css/main.css" />
<link rel="stylesheet" type="text/css" href="../css/article.css" />
<script type="text/javascript" src="../js/jquery.min.js"></script>
<script type="text/javascript" src="../js/article.js"></script>
<script src='../js/Valine.min.js'></script>
</head>
<body>
<div id="top"></div>
<!-- 顶部导航栏 -->
<div class="topnav">
<ul>
<li><a href="../index.html">主页</a></li>
<li><a href="../post/article.html">文章</a></li>
<li><a href="../resources.html">资源</a></li>
<li><a href="../other.html">其他</a></li>
</ul>
</div>
<!-- 头部标题logo -->
<div class="header02">
<img class="logo" src="../images/logo.png" alt="無同的小屋" />
</div>
<!-- 内容 -->
<div class="row">
<!-- 左列内容 -->
<div class="leftcolumn">
<div class="blur">
<h2>文章列表</h2>
<iframe class="toc" src="article-toc.html" frameborder="0"></iframe>
</div>
</div>
<!-- 右列内容 -->
<div class="rightcolumn">
<div class="blur">
<!-- 文章内容 -->
<div class="stackedit">
<div class="stackedit__html">
<h1 id="头歌-java-答案"><span class="prefix"></span><span class="content">头歌-JAVA-答案</span><span class="suffix"></span></h1>
<blockquote>
<p>发布时间:2024-03-12 19:09<br>
修改时间:2024-03-22 19:34<br>
【作者:無同 | 未经许可,请勿转载!】</p>
</blockquote>
<p><strong>目录</strong></p>
<p></p><div class="preview-toc"><ul><li class="preview-toc-item preview-toc-l1"><a href="#头歌-java-答案">头歌-JAVA-答案</a><ul><li class="preview-toc-item preview-toc-l2"><a href="#java入门---java初体验">Java入门 - Java初体验</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java入门---变量与数据类型">Java入门 - 变量与数据类型</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java入门---运算符和表达式">Java入门 - 运算符和表达式</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#学习-java-顺序结构之无输入之输出给定图案">学习-Java 顺序结构之无输入之输出给定图案</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java入门---分支结构">Java入门 - 分支结构</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java入门---循环结构基础">Java入门 - 循环结构基础</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java入门---循环结构进阶">Java入门 - 循环结构进阶</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java循环与分支语句编程练习">Java循环与分支语句编程练习</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java入门---数组基础">Java入门 - 数组基础</a></li>
<li class="preview-toc-item preview-toc-l2"><a href="#java入门---数组进阶">Java入门 - 数组进阶</a></li></ul></li></ul></div><p></p>
<h2 id="java入门---java初体验"><span class="prefix"></span><span class="content">Java入门 - Java初体验</span><span class="suffix"></span></h2>
<p><strong>第1关 Java第一课</strong></p>
<pre><code>public class HelloWorld{
/********* Begin *********/
public static void main(String[] args){
System.out.println("姓名:张三");
System.out.println("年龄:25");
System.out.println("职业:JAVA高级工程师");
System.out.println("薪资:15K");
}
/********* End *********/
}
</code></pre>
<p><strong>第2关 JAVA入门测试题</strong></p>
<pre><code>C C D BC
</code></pre>
<p><strong>第3关:JAVA关键字</strong></p>
<pre><code>package key;
/********* Begin *********/
public class HelloWorld {
public static void main(String[] args){
System.out.println("hello eduCoder");
}
}
/********* End *********/
</code></pre>
<p><strong>第4关:JAVA关键字测试题</strong></p>
<pre><code>ABD
</code></pre>
<p><strong>第5关:JAVA标识符</strong></p>
<pre><code>package chapter2;
/********* Begin *********/
public class HelloWorld {
String userName = "张三";
public static void main(String[] args){
System.out.println("hello eduCoder");
}
}
/********* End *********/
</code></pre>
<p><strong>第6关:JAVA标识符测试题</strong></p>
<pre><code>CD D
</code></pre>
<p><strong>第7关:JAVA注释</strong></p>
<pre><code>package chapter2;
public class HelloEduCoder {
/********* Begin *********/
public static void main(String[] args) {
//.out.println("hello world");
System.out.println("www.educoder.net");
//System.out.println("educoder.net");
//System.out.println("www.educoder");
//System.out.println(".net");
//System.out.println("www");
}
/********* End *********/
}
</code></pre>
<p><strong>第8关:JAVA注释测试题</strong></p>
<pre><code>ADE
</code></pre>
<h2 id="java入门---变量与数据类型"><span class="prefix"></span><span class="content">Java入门 - 变量与数据类型</span><span class="suffix"></span></h2>
<p><strong>第1关:变量与常量</strong></p>
<pre><code>package chapter2.step1;
public class HelloWorld{
public static void main(String[] args){
/********* Begin *********/
String love = "www.educoder.net";
System.out.println(love);
/********* End *********/
}
}
</code></pre>
<p><strong>第2关:变量的使用</strong></p>
<pre><code>package chapter2;
public class HelloVariable {
public static void main(String[] args) {
/********* Begin *********/
//在这里定义变量 love 并赋初值为 我喜欢在educoder上学习
String love = "我喜欢在educoder上学习";
/********* End *********/
System.out.println("变量love的值为" + love);
String userName = "李四";
/********* Begin *********/
//在这一行将userName的值改成李四
/********* End *********/
System.out.println("重新赋值后变量userName的值为" + userName);
}
}
</code></pre>
<p><strong>第3关:变量测试题</strong></p>
<pre><code>BD C
</code></pre>
<p><strong>第4关:JAVA数据类型</strong></p>
<pre><code>package chapter2;
public class JavaDataType1 {
public static void main(String[] args) {
/********* Begin *********/
String name ="张无忌"; //在本行定义字符串变量name
int age =23; //在本行定义年龄变量 age
char sex ='男'; //在本行定义性别变量 sex
float score =66.6f; //在本行定义分数变量 score
/********* End *********/
System.out.println(name + age + "岁" + "性别:" + sex + "这次考了" + score + "分");
}
}
</code></pre>
<p><strong>第5关:Java类型转换</strong></p>
<pre><code>package chapter2;
public class TypeConvert {
public static void main(String[] args) {
/********* Begin *********/
double score=89.3;
int scoreInt=(int)score;
System.out.println(score);
System.out.println(scoreInt);
/********* End *********/
}
}
</code></pre>
<p><strong>第6关:JAVA数据类型和类型转换测试题</strong></p>
<pre><code>CD CD AD
</code></pre>
<p><strong>第7关:Scanner的使用</strong></p>
<pre><code>package chapter2.step7;
/********* Begin *********/
import java.util.Scanner;
public class HelloWorld{
public static void main(String[] args){
Scanner input = new Scanner(System.in);
System.out.println("请录入嫦娥个人信息:");
System.out.println("请输入姓名:");
String a1 =input.next();
System.out.println("请输入年龄:");
int a2 =input.nextInt();
System.out.println("请输入性别:");
String a3 =input.next();
System.out.println("请输入体重:");
double a4 =input.nextDouble();
System.out.println("请输入地址:");
String a5 =input.next();
System.out.println("请输入是否已婚:");
String a6 =input.next();
System.out.println("信息如下:");
System.out.println("\t姓名:"+ a1);
System.out.println("\t年龄:"+ a2 + "岁");
System.out.println("\t性别:"+ a3);
System.out.println("\t体重:"+ a4 + "kg");
System.out.println("\t地址:"+ a5);
System.out.println("\t婚否:"+ a6);
/********* End *********/
}
}
</code></pre>
<h2 id="java入门---运算符和表达式"><span class="prefix"></span><span class="content">Java入门 - 运算符和表达式</span><span class="suffix"></span></h2>
<p><strong>第1关:算数运算符</strong></p>
<pre><code>package step1;
import java.util.Scanner;
public class Cal {
public static void main(String[] args) {
/*********start*********/
Scanner sc= new Scanner(System.in);
int a,b;
System.out.print("请输入第一个整数\n");
a=sc.nextInt();
System.out.print("请输入第二个整数\n");
b=sc.nextInt();
System.out.println("两数相加的结果为:"+(a+b));
System.out.println("两数相减的结果为:"+(a-b));
System.out.println("两数相乘的结果为:"+(a*b));
System.out.println("两数相除的结果为:"+(a/b));
System.out.println("两数取余数的结果为:"+(a%b));
sc.close();
/*********end*********/
}
}
</code></pre>
<p><strong>第2关:关系运算符</strong></p>
<pre><code>package step2;
import java.util.Scanner;
public class Relative {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
/*********start*********/
System.out.println("a==b="+(a==b));
System.out.println("a!=b="+(a!=b));
System.out.println("a>b="+(a>b));
System.out.println("a<b="+(a<b));
System.out.println("b>=a="+(b>=a));
System.out.println("b<=a="+(b<=a));
/*********end*********/
}
}
</code></pre>
<p><strong>第3关:逻辑运算符</strong></p>
<pre><code>package step3;
import java.util.Scanner;
public class testLogic {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
boolean a=sc.nextBoolean();
boolean b=sc.nextBoolean();
boolean c=sc.nextBoolean();
/*********start *********/
System.out.println(a&&b);
System.out.println(b);
System.out.println(b||c);
System.out.println(a||c);
/*********end *********/
}
}
</code></pre>
<p><strong>第4关:三元运算符</strong></p>
<pre><code>package step4;
import java.util.Scanner;
public class TestYear {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int year=sc.nextInt();
boolean result;
/********start********/
result=((year%400==0)||((year%4==0)&&(year%100!=0)))?true:false;
System.out.println(year + "年是否为闰年:" + result);
/********end********/
}
}
</code></pre>
<p><strong>第5关:运算符的优先级</strong></p>
<pre><code>package step5;
import java.util.Scanner;
public class TestDemo5 {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("输入:");
int m=sc.nextInt();
int n=sc.nextInt();
System.out.println("输出:");
/*****start*****/
System.out.println( m*2+n*2 );
System.out.println( (m-n)%3 );
System.out.println((m-n)/2 + (m+n)*2);
/*****end*****/
}
}
</code></pre>
<p><strong>第6关:选择自测题</strong></p>
<pre><code>B A C C A A
</code></pre>
<h2 id="学习-java-顺序结构之无输入之输出给定图案"><span class="prefix"></span><span class="content">学习-Java 顺序结构之无输入之输出给定图案</span><span class="suffix"></span></h2>
<p><strong>第1关:学习-Java顺序结构之无输入输出给定图案</strong></p>
<pre><code>/**
* 任务:输出实心等腰三角形。
* 类名为:OutputTriangle
*/
public class OutputTriangle {
public static void main(String[] args) {
// 请在下面的 Begin-End 处,按照所给的代码注释完成相应代码的编写
/********** Begin **********/
// 使用空格和*,向控制台输出一个高为4,底为7的等腰三角形,最后一个输出采用不换行输出
System.out.println(" *");
System.out.println(" ***");
System.out.println(" *****");
System.out.println("*******");
/********** End **********/
}
}
</code></pre>
<h2 id="java入门---分支结构"><span class="prefix"></span><span class="content">Java入门 - 分支结构</span><span class="suffix"></span></h2>
<p><strong>第1关:Java分支结构之 if…else</strong></p>
<pre><code>package step2;
import java.util.Scanner;
public class HelloIfStep2 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
/******start******/
System.out.println("请输入学员成绩:");
int score = input.nextInt();
if (score>=85) {
System.out.println("优,非常棒!");
} else {
System.out.println("良,下次加油!");
}
/******end******/
}
}
</code></pre>
<p><strong>第2关:if语句测试题</strong></p>
<pre><code>C C D
</code></pre>
<p><strong>第3关:Java分支结构之多重if</strong></p>
<pre><code>package step3;
import java.util.Scanner;
public class HelloStep3 {
public static void main(String[] args) {
System.out.println("星级成绩评定系统");
System.out.println("请输入成绩:");
Scanner sc = new Scanner(System.in);
/******start******/
int score = sc.nextInt();
if (score>=90){
System.out.println("*****五星成绩");
} else if (score>=80 && score<90) {
System.out.println("****四星成绩");
} else if (score>=70 && score<80) {
System.out.println("***三星成绩");
} else if (score>=60 && score<70) {
System.out.println("**俩星成绩");
} else if (score<60) {
System.out.println("无星成绩");
}
/******end******/
}
}
</code></pre>
<p><strong>第4关:Java分支结构之Switch</strong></p>
<pre><code>package step4;
import java.util.Scanner;
public class HelloSwitch {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入月份:");
int input = sc.nextInt(); //获取输入的月份
//通过输入的月份来判断当前季节并输出
/*****start*****/
switch (input) {
case 3:
case 4:
case 5:
System.out.println(input+"月是春天");
break;
case 6:
case 7:
case 8:
System.out.println(input+"月是夏天");
break;
case 9:
case 10:
case 11:
System.out.println(input+"月是秋天");
break;
case 12:
case 1:
case 2:
System.out.println(input+"月是冬天");
break;
}
/*****end*****/
}
}
</code></pre>
<p><strong>第5关:Switch语句测试题</strong></p>
<pre><code>C D
</code></pre>
<p><strong>第6关:来吧,我是BOSS!</strong></p>
<pre><code>package step5;
import java.util.Scanner;
public class Practice {
final static Scanner sc = new Scanner(System.in); //创建扫描仪
//第一题
public void first(){
System.out.println("请输入人数:");
int input = sc.nextInt(); //获取输入的数据
/*****start*****/
if (input<10){
System.out.println("打半场");
} else {
System.out.println("打全场");
}
/*****end*****/
}
//第二题
public void second(){
System.out.println("请输入今天星期几:");
int input = sc.nextInt(); //获取输入的数据
/*****start*****/
if (input==1) {
System.out.println("今天吃米饭");
} else if (input==2) {
System.out.println("今天吃牛排");
} else if (input==3) {
System.out.println("今天吃鸡排");
} else {
System.out.println("今天吃红烧肉");
}
/*****end*****/
}
//第三题
public void third(){
System.out.println("请输入今天星期几:");
int input = sc.nextInt(); //获取输入的数据
/*****start*****/
switch (input) {
case 1:
System.out.println("今天吃米饭");
break;
case 2:
System.out.println("今天吃牛排");
break;
case 3:
System.out.println("今天吃鸡排");
break;
default:
System.out.println("今天吃红烧肉");
break;
}
/*****end*****/
}
}
</code></pre>
<h2 id="java入门---循环结构基础"><span class="prefix"></span><span class="content">Java入门 - 循环结构基础</span><span class="suffix"></span></h2>
<p><strong>第1关:Java循环结构之while循环</strong></p>
<pre><code>package step1;
public class HelloWorld {
public static void main(String[] args) {
/*****start*****/
int i = 1;
while (i<=6) {
System.out.println("做了"+i+"个俯卧撑");
i = i+1;
}
/*****end*****/
}
}
</code></pre>
<p><strong>第2关:Java循环结构之while循环练习</strong></p>
<pre><code>package step2;
public class HelloWorld {
public static void main(String[] args) {
/*****start*****/
int m = 1;
int n = 0;
while (m<=100) {
n = m + n;
m++;
}
System.out.println("1到100相加的结果为"+n);
/*****end*****/
}
}
</code></pre>
<p><strong>第3关: Java循环结构之do…while循环</strong></p>
<pre><code>package step3;
public class HelloWorld {
public static void main(String[] args) {
int count= 0; //定义变量存储6的倍数出现的次数
/*****start*****/
int i = 1;
do {
if(i%6==0){
count++;
}
i++;
} while(i<=100);
/*****end*****/
System.out.println("6的倍数出现的次数为:" + count);
}
}
</code></pre>
<p><strong>第4关:while,do…while循环测试题</strong></p>
<pre><code>B C B
</code></pre>
<p><strong>第5关:break和continue关键字</strong></p>
<pre><code>package step4;
public class HelloWorld {
public static void main(String[] args) {
int i = 0;
while(i <= 20){
i++;
/*****start*****/
if(i%2==0){
System.out.println( i + "是偶数");
continue;
}
System.out.println(i + "是奇数");
if(i==13) {
break;
}
/*****end*****/
}
}
}
</code></pre>
<p><strong>第6关:break和continue关键字测试题</strong></p>
<pre><code>C
</code></pre>
<p><strong>第7关:Java循环结构之for循环</strong></p>
<pre><code>package step5;
import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请给定一个自然数N:");
int N = sc.nextInt();//获取输入的整数N
int sum = 1;
/*****start*****/
for(int i=1;i<=N;i++){
sum=sum*i;
}
/*****end*****/
System.out.println("自然数N的阶乘为" + sum);
}
}
</code></pre>
<p><strong>第8关:for循环测试题</strong></p>
<pre><code>B
</code></pre>
<h2 id="java入门---循环结构进阶"><span class="prefix"></span><span class="content">Java入门 - 循环结构进阶</span><span class="suffix"></span></h2>
<p><strong>1. for循环的进阶使用-嵌套循环(1)</strong></p>
<pre><code>package step1;
public class ForPractice1 {
public static void test() {
/*****start*****/
for(int m=1;m<=10;m++){
for(int n=1;n<=10;n++){
System.out.print("*");
}
System.out.println();
}
/*****end*****/
}
}
</code></pre>
<p><strong>2. for循环的进阶使用-嵌套循环(2)</strong></p>
<pre><code>package step2;
public class ForPractice2 {
public static void main(String[] args) {
/*****start*****/
//在这里打印出正三角形
for(int m=1;m<=10;m++){
for(int n=1;n<=m;n++){
System.out.print("*");
}
System.out.println();
}
System.out.println("——————————我是华丽的分界线——————————");
//在这里打印出倒三角形
for(int x=1;x<=10;x++){
for(int y=10;y>=x;y--){
System.out.print("*");
}
System.out.println();
}
/*****end*****/
}
}
</code></pre>
<p><strong>3. 99乘法表</strong></p>
<pre><code>package step3;
public class ForPractice3 {
public static void main(String[] args) {
/*****start*****/
for(int n=1;n<=9;n++){
for(int m=1;m<=n;m++){
System.out.print(m+"*"+n+"="+(m*n)+"\t");
}
System.out.println();
}
/*****end*****/
}
}
</code></pre>
<p><strong>4. 综合练习之ATM取款机</strong></p>
<pre><code>package step4;
import java.util.Scanner;
public class ForPractice4 {
public static void main(String[] args) {
/*****start*****/
Scanner sc=new Scanner(System.in);
System.out.println("欢迎使用中国人民银行ATM取款机");
int sum=1000;
int i=2;
while(i==2){
System.out.println("输入取款金额:");
int out=sc.nextInt();
if(out>sum){
System.out.println("目前余额:"+sum+"无法满足您的取款需求!");
}else{
System.out.println("剩余金额:"+(sum-out)+",是否继续('1':结束,'2':继续):");
i=sc.nextInt();
sum-=out;
}
}
System.out.println("取款结束!");
/*****end*****/
}
}
</code></pre>
<p><strong>5. 选择题</strong></p>
<pre><code>D BC B
</code></pre>
<h2 id="java循环与分支语句编程练习"><span class="prefix"></span><span class="content">Java循环与分支语句编程练习</span><span class="suffix"></span></h2>
<p><strong>1. 将给定的整数进行由小至大排序</strong></p>
<pre><code>package step4;
public class LianXi_Sort {
public static void main(String[] args) {
// TODO Auto-generated method stub
/*
* 定义三个整数x,y,z,将这三个整数由小到大排序并输出。
* 例如定义 int x = 9; int y = 10; int z = 8; -- > x的值改成8 y的值改成9 z的值改成10
*
* 实现思路:通过if语句对x y z 的值进行匹配,比如x大于y则x和y进行数据交换
* */
java.util.Scanner sc = new java.util.Scanner(System.in);
//获取平台分配的x的值
int x = sc.nextInt();
//获取平台分配的y的值
int y = sc.nextInt();;
//获取平台分配的z的值
int z = sc.nextInt();;
/**********begin**********/
int m=0;
if(x>y){
m=x;
x=y;
y=m;
}
if(y>z){
m=y;
y=z;
z=m;
}
/**********end**********/
System.out.print("x:"+x+" y:"+y+" z:"+z);
}
}
</code></pre>
<p><strong>2. 根据给定的不重复的四个正整数,组成无重复数字的三位数并输出</strong></p>
<pre><code>package step3;
public class LianXi {
public static void main(String[] args) {
/*
* 假设平台分配的四个整数为 1 2 3 4
* 那么百位有可能是 1 2 3 4 十位:有可能是 1 2 3 4 个位:有可能是 1 2 3 4,
* 要求是 百位 十位 各位上的数字不能重复
* 比如:123 124 132 134 等都满足条件
* 比如:122 131 121 232 等都不满足条件
*
* */
//定义长度为4的int数组
int[] array = new int[4];
//创建Scanner对象获取平台输入的信息
java.util.Scanner sc = new java.util.Scanner(System.in);
//获取平台给定的输入值并填充至数组中
for(int i=0;i<array.length;i++){
array[i] = sc.nextInt();
}
//通过第一层循环控制百位的数字 array[i]表示百位的值
for (int i = 0; i < array.length; i++) {
//通过第二层循环控制十位的数字 array[j]表示十位的值
for (int j = 0; j < array.length; j++) {
//通过第三层循环控制个位的数字 array[k]表示个位的值
for(int k = 0;k< array.length;k++) {
/**********begin**********/
if(i!=j){
if(j!=k){
if(i!=k){
System.out.print(array[i]);
System.out.print(array[j]);
System.out.print(array[k]);
System.out.println();
}
}
}
/**********end**********/
}
}
}
}
}
</code></pre>
<p><strong>3. 通过for循环打印实心三角形</strong></p>
<pre><code>package step1;
public class ShiXinSanJiaoXing
{
public static void main(String[] args)
{
//创建Scanner对象用于获取平台给定的输入信息
java.util.Scanner sc = new java.util.Scanner(System.in);
//定义需要打印的总行数
int lineNum = sc.nextInt();
/*
i(行号) 空格数量(lineNum-i) 星星数量 (2*i -1)
1 5 1
2 4 3
3 3 5
4 2 7
5 1 9
6 0 11
*/
//通过外循环控制需要打印的行数
for(int i=1;i<=lineNum;i++){
/**********begin**********/
//通过内循环(1)控制需要打印的空格
for(int j=1;j<=lineNum-i;j++){
System.out.print(" ");
}
//通过内循环(2)控制需要打印的星星的数量
for(int j=1;j<=2*i-1;j++){
System.out.print("*");
}
/**********end**********/
//当前行中的空格以及星星打印完成之后进行换行操作 \n表示换行
System.out.print("\n");
}
}
}
</code></pre>
<p><strong>4. 找出1至1000以内的质数</strong></p>
<pre><code>package step2;
public class FindZhiShu {
public static void main(String[] args) {
/**********begin**********/
for(int i=2;i<=1000;i++){
boolean zs=true;
for(int j=2;j<i;j++){
if(i%j==0){
zs=false;
break;
}
}
if(zs){
System.out.print(i+" ");
}
}
/**********end**********/
}
}
</code></pre>
<h2 id="java入门---数组基础"><span class="prefix"></span><span class="content">Java入门 - 数组基础</span><span class="suffix"></span></h2>
<p><strong>1. 初识数组</strong></p>
<pre><code>package step1;
public class HelloWorld {
public static void main(String[] args) {