c(15) : error C2059: syntax error : 'type'
#include <stdio.h>#include <math.h>
int main(void)
{
double n, a, b;
a = sqrt(n+100);
b = sqrt(n+168);
if (a-int(a)==0 && b-int(b)==0)
printf("%f", n);
return 0;
}
c(15) : error C2059: syntax error : 'type' 这是为什么