Auto commit

This commit is contained in:
smallkun 2025-03-24 19:59:35 +08:00
parent 9a03816526
commit 4ebb1c8c83
3 changed files with 44 additions and 0 deletions

View 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;
}

View File

@ -0,0 +1 @@
ADFADFAAAFDAFDSFSDF

View File

@ -1089,5 +1089,28 @@ int main(){
![image-20250227231516025](https://yp.smallkun.cn/markdown/image-20250227231516025.png!compress) ![image-20250227231516025](https://yp.smallkun.cn/markdown/image-20250227231516025.png!compress)
```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;
}
```