char是专门用来储存字母和比较小的数字的整型,
但他只能储存一个字母,上代码:
#include<iostream> int main() { using namespace std; cout << "Now ,you can print a word: "; char word; //用整型word储存字母 cin >> word; //将输入的字母储存到整型word之中,另外需要注意的是,只能储存一个字母。 cout << "Yes,now I know which word you have typed in computer." << endl; cout << "This word is " << word << " ." << endl; //显示储存的字母,如果输入的时候不止一个,则只能显示第一个。 cout << "Please tell me, is that right ?" << endl; cout << "如果我不对,那么肯定是你打了两个或者两个以上字母,但是char是一字节,他只能储存一个字母。" << endl; //至于如何储存两个或者两个以上字母,我还在学习,待补充 system("pause"); return 0; }