printf()问题
为什么我输入#include <stdio.h>#include <math.h>
int main()
{
int i,j,k;
i = 1 + 2;
j = 1 + 2 * 3;
k = i + j + -1 + pow(2,3);
printf("i = %d\n",i);
printf("j = %d\n",j);
printf("k = %d\n",k);
return 0;
}时
那三个printf()语句会报出public int__cdecl printf(const char *__restrict___ _Format,...)的字样? ?? 这个代码在我这边没有任何问题
我这里也没有问题 我这只有个double变int 丢失数据的警告 。。。{:10_269:}
页:
[1]