基礎構文班 5回目 繰り返し
- 19. import java.io.*;
class クラス名{
public static void main(String[] args)
throws IOException {
BufferedReader br=
new BufferedReader(new Input
StreamReader(System.in));
String str=br.readLine();
int num=Integer.parseInt(str);
}
}
19
- 22. 文字列からの変換
String s→int i
String str = br.readLine();
int i=Integer.parseInt(s)
String s→double d
String str = br.readLine();
double d= Double.parseDouble(s)
22