質問編集履歴

1

コードと実行結果の記載

2021/04/23 12:27

投稿

oatamagayo
oatamagayo

スコア0

test CHANGED
File without changes
test CHANGED
@@ -7,3 +7,53 @@
7
7
  【補足】
8
8
 
9
9
  vsCodeを使っております。よろしくお願いします。
10
+
11
+
12
+
13
+
14
+
15
+ 【補足2】
16
+
17
+
18
+
19
+ コードがこちらです。
20
+
21
+
22
+
23
+ import java.util.Scanner;
24
+
25
+
26
+
27
+ public class Hairetu{
28
+
29
+ public static void main(String[] args){
30
+
31
+ Scanner scan=new Scanner(System.in);
32
+
33
+ System.out.println("データは?>");
34
+
35
+ String s=scan.nextLine();
36
+
37
+ System.out.println("入力:"+s);
38
+
39
+ scan.close();
40
+
41
+
42
+
43
+
44
+
45
+ }
46
+
47
+ }
48
+
49
+
50
+
51
+ 続いて、結果がこちらです。
52
+
53
+
54
+
55
+ データは?>
56
+
57
+ 春夏秋冬
58
+
59
+ 入力:����