View Code of Problem 3495

#include<stdio.h>

int main(){
  while(~scanf("%d%d",&a,&b)){
  pritnf("%d\n",a%b);
  }
  return 0;
}
/*
F:\temp\21453671.647181\Main.c: In function 'main':
F:\temp\21453671.647181\Main.c:5: error: 'a' undeclared (first use in this function)
F:\temp\21453671.647181\Main.c:5: error: (Each undeclared identifier is reported only once
F:\temp\21453671.647181\Main.c:5: error: for each function it appears in.)
F:\temp\21453671.647181\Main.c:5: error: 'b' undeclared (first use in this function)
*/

Double click to view unformatted code.


Back to problem 3495