요즘은 c++도 조금씩 공부하고 있다.
그래서 나의 첫번째 C++ 프로그램을 만들어봤다!ㅋㅋ
제목은
looksoyoung.cpp
#include <iostream>
using namespace std;
int main()
{
int age;
cout << "What's your age?" << endl;
cin >> age;
cout << "oh, you look so young! you already " << age << "??? amazing!" << endl;
return 0;
}
예엥
결과화면
C++ 컴파일 과정 (1) | 2024.02.13 |
---|---|
다형성(Polymorphism), 오버라이딩(overriding), 오버로딩(overloading) 의 개념 (0) | 2021.01.12 |