제출 #21094

#제출 시각아이디문제언어결과실행 시간메모리
21094yunhoo90if-else 문 1 (BSC_0_8)C++11
100 / 100
0 ms2180 KiB
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <list>
#include <memory.h>

using namespace std;


int main() {
	cin.sync_with_stdio(false);

	int n;
	cin >> n;
	if (n == 0) cout << "zero" << endl;
	else cout << "nonzero" << endl;

	return 0;
}

컴파일 시 표준 에러 (stderr) 메시지


#Verdict Execution timeMemoryGrader output
Fetching results...