본문 바로가기
School Study/2021-2

[week 01] C++ 복습 (컴퓨터, 프로그래밍 및 C++ 입문)

by 전전긍긍 2021. 9. 23.

20210902_C++_공부기록

//C++을 사용하여 화면에 “Welcome to C++!” 라는 문자열을 출력하는 프로그램을 작성해 보자.

#include <iostream>
using namespace std;
int main() {
	cout << "Welcome to C++!" << endl;
	cout << "저는 S대 컴퓨터공학과 학생입니다" << endl;
	cout << "My name is Kim JeongEun" << endl;
	cout << "교수님의 수업을 듣게 되어서 영광입니다." << endl;
	cout << "I hope we have a great semester together." << endl;
	return 0;
}

/*Welcome to C++!
저는 S대 컴퓨터공학과 학생입니다
My name is Kim JeongEun
교수님의 수업을 듣게 되어서 영광입니다.
I hope we have a great semester together. */