include<stdio.h>问题
我运行一下程序,结果显示“错误 format.h 1: 无法打开包含文件 'stdio.h'”#include <stdio.h>
#include"format.h"
void main()
{
int a,b,c,d;
char string[]="china";
a=1;b=2;c=3;d=4;
PR(D1,a);
PR(D2,a,b);
PR(D3,a,b,c);
PR(D4,a,b,c,d);
PR(S,string);
getch();
}
请教各位大侠,这是咋个情况?