문제 출처: algospot.com/judge/problem/read/MERCY
1. 코드
#include <iostream>
using namespace std;
int main(void)
{
int n;
cin >> n;
while (n--)
cout << "Hello Algospot!" << endl;
}
'컴퓨터 > 알고스팟 알고리즘' 카테고리의 다른 글
알고스팟: LECTURE [C++] (0) | 2021.05.05 |
---|---|
알고스팟 알고리즘: DRAWRECT [C++] (0) | 2021.05.04 |
알고스팟 알고리즘: ENDIANS [C++] (0) | 2021.05.03 |
알고스팟(Algospot): 피크닉(PICNIC) [C++] (0) | 2020.11.17 |
알고스팟(algospot): 보글 게임(BOGGLE) [C++] (0) | 2020.11.11 |