문제 출처: algospot.com/judge/problem/read/MERCY
algospot.com :: MERCY
Merciful Algospot 문제 정보 문제 The administrators of algospot.com are so merciful, that they prepared really, really easy problem to prevent contestants from frustration. 입력 Input contains just one positive integer N(N <= 10). 출력 Print N li
algospot.com
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 |