제출 #3288

#제출 시각아이디문제언어결과실행 시간메모리
3288zzapcoder0 = not cute / 1 = cute (kriii1_0)C++98
컴파일 에러
0 ms0 KiB
#include<iostream>
using namespace std;
int main(){
  int cute=0, notcute =0, n;
  cin >> n;
  for(int i=0;i<n;++i){
    int votes;cin>>votes;
    if(votes)cute++;
    else notcute++;
  }
  if(cute>notcute) printf("Junhee is cute!\n");
  else printf("Junhee is not cute!\n");
  return 0;
}

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

0.cpp: In function 'int main()':
0.cpp:11:46: error: 'printf' was not declared in this scope
0.cpp:12:38: error: 'printf' was not declared in this scope