LoginSignup
0
0

More than 1 year has passed since last update.

Java ど初心者メモ①

Posted at

ど初心者メモ:

2の2乗を8回行う。
public class Main{
  public static void main(String[] args) {
   int x = 1;
   for(int i = 1; i <= 8; i++) {
    x *= 2;
    System.out.println("2の" + i + "乗は" + x );
   }

  }
}

Javaを使えるようになるのだろうか....はぁ....

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0