본문 바로가기
c++/정올

[정올] #501 출력 - 자가진단1(c++)

by ilp 2024. 2. 11.
반응형

https://jungol.co.kr/problem/501?cursor=eyJwcm9ibGVtc2V0IjoiMiIsImZpZWxkIjowLCJpZHgiOjF9

 

JUNGOL

code_blocks 코드 보기

jungol.co.kr



#include <bits/stdc++.h>
using namespace std;

int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	cout<<"Fun Programming!";

	return 0;
}
반응형

'c++ > 정올' 카테고리의 다른 글

[정올] #9002 출력 - 연습문제2(c++)  (0) 2024.02.25
[정올] #9001 출력 - 연습문제1(c++)  (2) 2024.02.10