홍용민

echo program

Showing 1 changed file with 13 additions and 0 deletions
1 +#include<iostream>
2 +using namespace std;
3 +
4 +int main() {
5 + char c;
6 +
7 + cout << "Enter a character -> ";
8 + cin >> c;
9 +
10 + cout << "you enter \"" << c << "\"" << endl;
11 +
12 + return 0;
13 +}
...\ No newline at end of file ...\ No newline at end of file