View Code of Problem 20

#include<stdio.h>
int main{
  int n;
  while(scanf("%d",&n)!=EOF)
  {
      if(n%3==0) printf("No");
      else printf("Yes");
  }
  
  
}
/*
Main.c:2:9: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
 int main{
         ^
*/

Double click to view unformatted code.


Back to problem 20