编程,从键盘中输入五个字符分别是holle,屏幕中输出五个字符holle
#include <iostream> using namespace std; int main() { char a[20]; cin >> a; cout << a; }