# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
117256 | 2019-06-15T12:19:07 Z | maho04 | scanf 함수 2 (BSC_0_4) | C++14 | 2 ms | 384 KB |
#include <iostream> using namespace std; int main(){ int a; cin>>a; if(a<10) { cout<<("00"); } else if(a<100); { cout<<("0"); } cout<<a; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |