Compile Error
foo.c: In function 'main': foo.c:16:21: error: stray '\' in program 16 | printf("%lld", count\n); | ^ foo.c:16:21: error: expected ')' before 'n' 16 | printf("%lld", count\n); | ~ ^~ | )
Code
#include<stdio.h>
int main(){
int g ;
long long int c,count,i;
scanf("%d", &g);
for(int j=1;j<=g;j++){
count=0;
scanf("%lld",&c);
for(i=1;i<=c;i+=2){
count++;
}
printf("%lld", count\n);
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1041 Odd number
- Contest
- TLE_Headquarters - round #1
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-03-27 17:11:49
- Judged At
- 2024-11-11 03:37:42
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 0 Bytes