Auto commit
This commit is contained in:
parent
9a03816526
commit
4ebb1c8c83
20
2207/C语言同步练习源码/8-文件-3.c
Normal file
20
2207/C语言同步练习源码/8-文件-3.c
Normal file
@ -0,0 +1,20 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(){
|
||||
char str[100];
|
||||
char *p = str;
|
||||
FILE *fp;
|
||||
fp = fopen("test.dat", "w");
|
||||
gets(str);
|
||||
|
||||
while(*p != '\0'){
|
||||
if(*p >= 'a' && *p <= 'z'){
|
||||
*p-=32;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
fputs(str, fp);
|
||||
fclose(fp);
|
||||
return 0;
|
||||
}
|
||||
|
1
2207/C语言同步练习源码/test.dat
Normal file
1
2207/C语言同步练习源码/test.dat
Normal file
@ -0,0 +1 @@
|
||||
ADFADFAAAFDAFDSFSDF
|
@ -1089,5 +1089,28 @@ int main(){
|
||||
|
||||

|
||||
|
||||
```c
|
||||
#include <stdio.h>
|
||||
|
||||
int main(){
|
||||
char str[100];
|
||||
char *p = str;
|
||||
FILE *fp;
|
||||
fp = fopen("test.dat", "w");
|
||||
gets(str);
|
||||
|
||||
while(*p != '\0'){
|
||||
if(*p >= 'a' && *p <= 'z'){
|
||||
*p-=32;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
fputs(str, fp);
|
||||
fclose(fp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user