用C语言能不能打开doc文件,我写了个这种程序,读的时候出错了,大伙儿看看怎么回事儿
用C语言能不能打开doc文件,我写了个这种程序,读的时候出错了,大伙儿看看怎么回事儿#include<stdio.h>
#include<math.h>
#include<stdlib.h>
int main()
{
FILE *fp;
double a,b,c,s,p;
if((fp=fopen("wj.doc","r"))==NULL)
{
printf("can't open this file");
exit (0);
}
fscanf(fp,"%lf%lf%lf",&a,&b,&c);
p=(a+b+c)/2;
s=sqrt(p*(p-a)*(p-b)*(p-c));
printf("这个三角形的面积是:%lf",s);
return 0;
}