Submission #117226

# Submission time Handle Problem Language Result Execution time Memory
117226 2019-06-15T11:33:56 Z maho04 scanf 함수 1 (BSC_0_3) C++14
Compilation error
0 ms 0 KB
using namespace std;
int main(void){
  int d;
  cin>>d;
  cout<<d;
}

Compilation message

scanf1.cpp: In function 'int main()':
scanf1.cpp:4:3: error: 'cin' was not declared in this scope
   cin>>d;
   ^~~
scanf1.cpp:4:3: note: suggested alternative: 'main'
   cin>>d;
   ^~~
   main
scanf1.cpp:5:3: error: 'cout' was not declared in this scope
   cout<<d;
   ^~~~