Auto commit
This commit is contained in:
parent
31af716c23
commit
a580bebc74
19
2207/C语言同步练习源码/5.指针-3.c
Normal file
19
2207/C语言同步练习源码/5.指针-3.c
Normal file
@ -0,0 +1,19 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(){
|
||||
char str[] = "AbcDEfg";
|
||||
char *p = str;
|
||||
|
||||
while(*p != '\0'){
|
||||
if(*p >= 'a' && *p <= 'z'){
|
||||
*p -= 32;
|
||||
}else{
|
||||
*p += 32;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
puts(str);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -808,6 +808,28 @@ int main(){
|
||||
|
||||

|
||||
|
||||
```c
|
||||
#include <stdio.h>
|
||||
|
||||
int main(){
|
||||
char str[] = "AbcDEfg";
|
||||
char *p = str;
|
||||
|
||||
while(*p != '\0'){
|
||||
if(*p >= 'a' && *p <= 'z'){
|
||||
*p -= 32;
|
||||
}else{
|
||||
*p += 32;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
puts(str);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
### 指针-4
|
||||
|
Loading…
x
Reference in New Issue
Block a user