怎么在c++中输入一串字符啊
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么在c++中输入一串字符啊相关的知识,希望对你有一定的参考价值。
一道简单的acm题我还是不会
A. Word Reversal
Time Limit: 1.0 Seconds Memory Limit: 65536K Multiple test files
For each list of words, output a line with each word reversed without changing the order of the words.
Input
You will be given a number of test cases. The first line contains a positive integer indicating the number of cases to follow. Each case is given on a line containing a list of words separated by one space, and each word contains only uppercase and lowercase letters.
Output
For each test case, print the output on one line.
Sample Input
3
I am happy today
To be or not to be
I want to win the practice contest
Sample Output
I ma yppah yadot
oT eb ro ton ot eb
I tnaw ot niw eht ecitcarp tsetnoc
c++中输入一串字符的函数有多种:
C标准函数,存储字符到字符数组中:
char str[100];
scanf("%s", str ) ; //读入一串字符,不能包括空格
gets(str); //输入一行字符,可以有空格,以回车键结束
C++函数,可以存储到字符数组,也可以存储到string类对象中:
string str;
cin >> str ; //读入一串字符,不能包括空格
getline(cin,str ); //输入一行字符,可以有空格,以回车键结束
string str;
则cin>>str; 参考技术C char a[10]
cin>>a;
TXT文档里有Unicode字符导致打开时为乱码怎么办啊?
我用手机存TXT文档时有时提示该文件含有Unicode格式的字符,当文件保存为ANSI编码的文本文件时,该字符将丢失。要保存Unicode信息,单击下面的“取消”,然后从编码列表中选择一个Unicode选项。继续吗?”但我的手机只支持TXT格式文档,找上面手的做了打开后还是乱码,有什么方法能将Unicode去掉,或更好的方法吗?
.一般新建的TXT文件都是ansic的吧?可是我重新复制粘贴在新建的文档里还是不行啊!还有如何能用Word将Unicode改为ansic呢?
如果我按上面说的点“取消”再选择unicode保存后,打开仍然是乱码?谁能帮解决一下!
以上是关于怎么在c++中输入一串字符啊的主要内容,如果未能解决你的问题,请参考以下文章