layout: post
title: “2017-07-03-study-java-note”
date: 2017-07-03 12:18:54 +0000
print メソッド
System.out.println("ハローワールド");
HTMLを表示する
public class Main {
public static void main(String[] args) throws Exception {
System.out.println("hello world");
System.out.println("<h1>hello</h1>");
System.out.print("改行しないよ!");
System.out.print("改行しないよ!");
System.out.print("改行しないよ!");
}
}
変数を使う
public class Main {
public static void main(String[] args) throws Exception {
String player = "勇者";
System.out.println(player);
//System.out.println("勇者は、荒野を歩いていた");
//System.out.println("勇者は、モンスターと戦った");
//System.out.println("勇者は、モンスターをたおした");
}
}
数の表示とサイコロ
public class Main {
public static void main(String[] args) throws Exception {
int number = 100;
System.out.println(number);
}
}