Auto commit

This commit is contained in:
smallkun 2025-03-18 08:30:48 +08:00
parent 777ac955d0
commit 152541650a
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#include <stdio.h>
void change(char *p){
//alex apple
*p++ -= 32;//a-> -32 ->A
while(*p != '#'){
if(*(p-1) == ' '){
*p -= 32;
}
p++;
}
*p = '\0';
}
int main(){
char str[1024];
gets(str);//读取一行字符串 回车判定结束
change(str);
puts(str);
return 0;
}

View File

@ -667,12 +667,43 @@ int main(){
![image-20250227231147113](https://yp.smallkun.cn/markdown/image-20250227231147113.png!compress)
```c
#include <stdio.h>
void change(char *p){
//alex apple
*p++ -= 32;//a-> -32 ->A
while(*p != '#'){
if(*(p-1) == ' '){
*p -= 32;
}
p++;
}
*p = '\0';
}
int main(){
char str[1024];
gets(str);//读取一行字符串 回车判定结束
change(str);
puts(str);
return 0;
}
```
### 函数-3
![image-20250227231154429](https://yp.smallkun.cn/markdown/image-20250227231154429.png!compress)
```c
```
## 指针