##javaを初めて学びました
####HelloWorld 文字出力
public class Main {
public static void main(String[] args) {
System.out.println("hello, world!");
}
}
出力
Hello World!
System.out.printlnが出力
文字列は””で囲う
おわりには;をつける
####計算方法
public class Main {
public static void main(String[] args) {
System.out.println("hello, world!");
System.out.println("31+31の計算をします");
System.out.println(31+31);
}
}
出力
hello, world!
31+31の計算をします
62
数式の場合は”で囲わない
####変数の定義と掛け算
public class Main {
public static void main(String[] args) {
int x;
x = 6;
System.out.println(x * x * 3.14);
}
}
出力
113.04
intは数字を定義するときに使う