第一个写题解的 有点意外哈哈
摘要:```c
#include
#include
int main()
{
char a[1000];
int flag=0;//flag作为间断点
gets(a);//gets能接收……
c语言题解c语言题解c语言题解
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>#include<math.h>int main(){ ……
单词翻转(要考虑输出空格和最后一个单词)
摘要:参考代码:
```c
#include
#include
#include
int main()
{
char a[500];
gets(a);
int len=strlen(……
2870: 单词翻转(不能用gets)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[400]; int j,i=0,f=0; fg……
单词翻转,在网上找了很久都感觉太复杂,尝试自己写了一个简洁点的思路
摘要:解题思路:找到单词与空格,空格与单词的间隔点,单词与空格之间打印单词,空格与单词之间打印空格注意事项:建议在草稿纸上画出来理解参考代码:#include<stdio.h>#include<string……