JAva学習ノート------翌日
9821 ワード
1 public class Demo3
2 {
3 public static void main(String[] args)
4 {
5 int i=10;
6 int j=20;
7 int k=i+j;
8 int m=i/j; // m=0.
9 float n=i/j; // m=0.0
10 float l=(float)i/j; // m=0.5
11 System.out.println(k);
12 /*
13 1. :+ - * / % ++ --
14 :/ , % ,++ ( 1),--
15 2.++i , ,i++ , 。
16 */
17 D_two(20);
18 D_twos();
19 }
20
21 public static void D_two(int num)
22 {
23 if(num%2==0)
24 {
25 System.out.println(num+" 。");
26 }else{
27 System.out.println(num+" 。");
28 }
29 }
30
31 public static void D_twos()
32 {
33 for(int i=1;i<=100;i++)
34 {
35 if(i>=40&&i<=50){
36 continue;
37 }
38 if(i%2==0)
39 {
40 System.out.print(i+"\t");
41 }
42 }
43 }
44 }
1 public class Demo4
2 {
3 public static void main(String[] args)
4 {
5 /*
6 1.
7 :1. , null。
8 2.null: , 。
9 3. --new 。
10 4.
11 :a[10] 0
12 2.
13 :a[][]={{1,2},{2,3,4,5}};
14 */
15 /*
16 int i[]=null;
17 i=new int[10];
18 */
19 System.out.println("------------- ----------------");
20 int[] a=new int[100];
21 for(int i=0;i<a.length;i++)
22 {
23 a[i]=i+1;
24 System.out.print(a[i]+"\t");
25 }
26 System.out.println("------------- ----------------");
27 int[][] b=new int[5][5];
28 for(int j=0;j<b.length;j++)
29 {
30 for(int k=0;k<b[j].length;k++)
31 {
32 b[j][k]=j;
33 System.out.print("b["+j+"]["+k+"]="+b[j][k]+"\t");
34 }
35 }
36 }
37 }