質問編集履歴
2
初めてでわからなかった
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,52 +1,4 @@
|
|
1
|
-
#include<stdio.h>
|
2
|
-
|
3
|
-
#include<string.h>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
int main(void){
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
int i;
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
char str[100];
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
printf("文字列(英数字)を入力 = ");
|
22
|
-
|
23
|
-
scanf("%s", str);
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
for(i=0;i<=strlen(str);i++){
|
30
|
-
|
31
|
-
if(str[i]>=97&&str[i]<=122)
|
32
|
-
|
33
|
-
str[i]=str[i]-32;
|
34
|
-
|
35
|
-
}
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
printf("変換した文字列 = %s\n", str);
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
return 0;
|
44
|
-
|
45
|
-
}
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
1
|
+
文字の変換をするプログラムを作成したいです。
|
50
2
|
|
51
3
|
以下のプログラムで、p=str; と printf("\n");の間に
|
52
4
|
|
1
タグを間違えた
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|