本文主要是介绍11-22C/C++/python程序编程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目:
输入一个字符串,以空格作为单词分隔符,将整个字符串按单词反序后输出。
例如:Nothing Is Impossiable
输出:Impossiable Is Nothing
C语言实现
#include<stdio.h>
#include<string.h>int main()
{char str[1024];char *p =str;printf("Input The String:");gets(str);while(*p) p++;printf("Output The String:");for(p--;p>str;p--){if(*p == ' '){printf("%s ",p+1);*p = '\0';}}printf("%s ",str );return 0;
}
注意事项:
①gets/getc等遇到回车停止输入,而scanf是遇到空格,Tab,回车都会停止输入。
这篇关于11-22C/C++/python程序编程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!