Submission #3288

# Submission time Handle Problem Language Result Execution time Memory
3288 2013-08-30T10:24:47 Z zzapcoder 0 = not cute / 1 = cute (kriii1_0) C++
Compilation error
0 ms 0 KB
#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;
}

Compilation message

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