Report#6

課題

解答・考察

試験問題Q23ソース

public class Test {
    public static void main(String[] args) {
        int x,y;
        x = 100;  x += 1;  x--;  y = 200 + x;
        System.out.println(y++);
    }
}
      

実行結果

300
      

試験問題Q24ソース

public class Test {
    public static void main(String[] args) {
        int a=0, x=0;
        a = 5; a += 3; x = ++a;
        System.out.println(x);
    }
}
      

実行結果

9
      

試験問題Q25ソース

public class Test {
    public static void main(String[] args) {
            int a=9, b=3;
            a /= b;
            System.out.println(a %= b);
        }
}
	  

実行結果

0
	  

試験問題Q26ソース

public class Test {
        public static void main(String[] args) {
        int i, j;
        for(i=0, j=0; i<3; i++) ++j;
        System.out.println(i * j);
        }
}
      

実行結果

9
      

試験問題Q27ソース

public class Test {
        public static void main(String[] args) {
                int i=2;
                while(i-- > 0) System.out.print(i);
        }
}
      

実行結果

10
      

試験問題Q28ソース

public class Test {
        public static void main(String[] args) {
                int num=10000;
                for(int i = 0; i < 4; i++) num >>= i;
                System.out.println(num);
        }
}
      

実行結果

156
      

試験問題Q29のソース

public class Test {
        public static void main(String[] args) {
                int num = 0;
                for(int i = 1; i <= 10; i++) {
                        if (++num % i == 0) num++;
                }
                System.out.println(++num);
        }
}
      

実行結果

12
      

試験問題Q30ソース

public class Test {
        public static void main(String[] args) {
                int a = 9;
                if(a++ != 10 | a++ == 10) a++;
                System.out.println(a);
        }
}
      

実行結果

12
      

試験問題Q31ソース

public class Test {
        public static void main(String[] args) {
                for(int i = 0; i<5; i++)
                System.out.println("i == " + i);
                System.out.println("Hello");
        }
}
      

実行結果

i == 0
i == 1
i == 2
i == 3
i == 4
Hello
      

試験問題Q32ソース

public class Test {
        public static void main(String[] args) {
                int i;
                for(i = 0; i<9; i+=3) {}
                System.out.println(i);
        }
}
      

実行結果

9
      

試験問題Q33ソース

public class Test {
        public static void main(String[] args) {
                for(int i = 0; i<8; i++) {
                  System.out.println(i);
                  i += 3;
                }
        }
}
      

実行結果

0
4
      

試験問題Q34ソース

public class Test {
        public static void main(String[] args) {
          int i = 0;
          for(sayHello(); i <= 6; i += 3) {
            sayHello();
          }
        }
        static void sayHello() {
          System.out.println("Hello");
        }
}
      

実行結果

Hello
Hello
Hello
Hello
      

試験問題Q35ソース

public class Test {
         public static void main(String[] args) {
           Player p1 = new Player();
           Player p2 = new Player();
           p1.id = 1000;
           p2.id = 2000;
           p1.num += p1.id;
           p2.num += p2.id;
           System.out.println(Player.num);
        }
}
class Player {
  int id = 0;
  static int num = 0;
}
      

実行結果

3000
      

試験問題Q36ソース

public class Test {
         public static void main(String[] args) {
           Player p1 = new Player();
           Player p2 = new Player();
           p1.id = 1000;
           p2.id = 2000;
           Player.num += p1.id;
           Player.num += p2.id;
           System.out.println("p1.num == " + p1.num);
           System.out.println("p2.num == " + p2.num);
        }
}
class Player {
  int id = 0;
  static int num = 0;
}
      

実行結果

p1.num == 3000
p2.num == 3000
      

試験問題Q37ソース

public class Test {
         public static void main(String[] args) {
           Card c1 = new Card();
           Card c2 = new Card();
           Card c3 = c1;
           c1.deposit = 1000;
           c2.deposit = 2000;
           c3.deposit = 3000;
           int sum = c1.deposit + c2.deposit + c3.deposit;
           System.out.println(sum);
        }
}
class Card {
  int deposit;
}
      

実行結果

8000
      

試験問題Q38ソース

public class Test {
         public static void main(String[] args) {
           Card c1 = new Card();
           Card c2 = c1;
           c1.deposit = 1000;
           c2.deposit = 2000;
           Bank.useCard(c1);
           Bank.useCard(c2);
           /* A */
           System.out.println("c1.deposit == " + c1.deposit);
           System.out.println("c2.deposit == " + c2.deposit);
        }
}
class Card { int deposit; }
class Bank {
   public static void useCard(Card c) {
     c.deposit -= 500;
   }
}
      

実行結果

c1.deposit == 1000
c2.deposit == 1000
      

感想・反省

今回のテストはなかなか点数が良かったのでかなりうれしかった。おかげで考察もかなり楽に出来た。しかし他のレポートが終わってないので早く終わらそうと思う(汗)。
.
.
.
オブジェクト (object)
客間や廊下などに置かれている物体。 クリックすると説明が出てくる。

参考資料・参考サイト



課題のページへ