質問編集履歴
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
```ここに言語を入力
|
2
|
+
|
3
|
+
コード
|
4
|
+
|
1
|
-
### 前提・実現したいこと
|
5
|
+
```### 前提・実現したいこと
|
2
6
|
|
3
7
|
>5←入力データ
|
4
8
|
|
@@ -34,13 +38,11 @@
|
|
34
38
|
|
35
39
|
### 発生している問題・エラーメッセージ
|
36
40
|
|
41
|
+
スペースの出力の仕方と*の下に[5]を出す方法がイマイチ分からないです。
|
37
42
|
|
38
43
|
|
39
|
-
```
|
40
44
|
|
41
|
-
エラーメッセージ
|
42
45
|
|
43
|
-
```
|
44
46
|
|
45
47
|
|
46
48
|
|
@@ -58,11 +60,45 @@
|
|
58
60
|
|
59
61
|
### 試したこと
|
60
62
|
|
63
|
+
import java.io.*;
|
61
64
|
|
65
|
+
public class ○○○○ {
|
62
66
|
|
63
|
-
|
67
|
+
public static void main(String[] args) throws IOException {
|
64
68
|
|
69
|
+
BufferedReader br =
|
65
70
|
|
71
|
+
new BufferedReader(new InputStreamReader(System.in));
|
72
|
+
|
73
|
+
System.out.print(”>”);
|
74
|
+
|
75
|
+
int str1 = integer.parseInt();
|
76
|
+
|
77
|
+
for(int i = 0; 10 < str1; i--);
|
78
|
+
|
79
|
+
System.out.print(” ”);
|
80
|
+
|
81
|
+
for(int i = 0; i < str1; i++);
|
82
|
+
|
83
|
+
System.out.println(” ”);
|
84
|
+
|
85
|
+
System.out.print(”*”);
|
86
|
+
|
87
|
+
}
|
88
|
+
|
89
|
+
System.out.println(”[” + str1 + ”]”);
|
90
|
+
|
91
|
+
}
|
92
|
+
|
93
|
+
}
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
66
102
|
|
67
103
|
### 補足情報(FW/ツールのバージョンなど)
|
68
104
|
|
1
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|