12. 字符类型

创建日期:2024-07-11
更新日期:2025-02-01

chartype.cpp

#include <iostream>

int main()
{
    using namespace std;
    char ch;

    cout << "Enter a character: " << endl;
    cin >> ch;
    cout << "Hola! ";
    cout << "Thank you for the " << ch << " character." << endl;
}