답안 #70457

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
70457 2018-08-23T01:01:22 Z cepiloth scanf 함수 2 (BSC_0_4) C
컴파일 오류
0 ms 0 KB
#include <iostream>
#include <string>
using namespace std;

int main() {
  string s; cin >> s;
  const int size = s.size();
  for(int i=size; i<3; i++)
    cout << "0";
  
  cout << s << endl;
  
  return 0;
}

Compilation message

scanf2.c:1:10: fatal error: iostream: No such file or directory
 #include <iostream>
          ^~~~~~~~~~
compilation terminated.