fprintf 簡(jiǎn)介 c/c++語(yǔ)言函數(shù): fprintf 功 能 傳送格式化輸出到一個(gè)文件中 用 法 #include stdio.h int fprintf( FILE *stream, const char *format, ... ); fprintf()函數(shù)根據(jù)指定的format(格式)(格式)發(fā)送信息(參數(shù))到由stream(流)指定的文件. fprintf()只能和printf()一樣工作. fprintf()的返回值是輸出的字符數(shù),發(fā)生錯(cuò)誤時(shí)返回一個(gè)負(fù)值. 返回值 成功時(shí)返回轉(zhuǎn)換的字節(jié)數(shù),失敗時(shí)返回一個(gè)負(fù)數(shù). 在LINUX/UNIX操系統(tǒng)中成功返回0,失敗返回-1。并置errno值. 程序例 /* Program to create backup of the AUTOEXEC.BAT file */ #include stdio.h int main(void) { FILE *in, *out; if ((in = fopen("http://AUTOEXEC.BAT", "rt")) == NULL) { fprintf(stderr, "Cannot open input file./n"); return 1; } if ((out = fopen("http://AUTOEXEC.BAK", "wt")) == NULL) { fprintf(stderr, "Cannot open output file./n"); return 1; } while (!feof(in)) fputc(fgetc(in), out); fclose(in); fclose(out); return 0; } 舉例用法: #include stdio.h #include process.h FILE *stream; void main( void ) { int i = 10; double fp = 1.5; char s[] = "this is a string"; char c = '/n'; stream = fopen( "fprintf.out", "w" ); fprintf( stream, "%s%c", s, c ); fprintf( stream, "%d/n", i ); fprintf( stream, "%f/n", fp ); fclose( stream ); system( "type fprintf.out" ); } 屏幕輸出: this is a string 10 1.500000 格式化規(guī)定符 %d 十進(jìn)制有符號(hào)整數(shù) %u 十進(jìn)制無(wú)符號(hào)整數(shù) %f 浮點(diǎn)數(shù) %s 字符串 %c 單個(gè)字符 %p 指針的值 %e 指數(shù)形式的浮點(diǎn)數(shù) %x, %X 無(wú)符號(hào)以十六進(jìn)制表示的整數(shù) %0 無(wú)符號(hào)以八進(jìn)制表示的整數(shù) %g 自動(dòng)選擇合適的表示法
創(chuàng)新互聯(lián)主要為客戶提供服務(wù)項(xiàng)目涵蓋了網(wǎng)頁(yè)視覺設(shè)計(jì)、VI標(biāo)志設(shè)計(jì)、營(yíng)銷網(wǎng)站、網(wǎng)站程序開發(fā)、HTML5響應(yīng)式網(wǎng)站建設(shè)、成都做手機(jī)網(wǎng)站、微商城、網(wǎng)站托管及網(wǎng)站維護(hù)、WEB系統(tǒng)開發(fā)、域名注冊(cè)、國(guó)內(nèi)外服務(wù)器租用、視頻、平面設(shè)計(jì)、SEO優(yōu)化排名。設(shè)計(jì)、前端、后端三個(gè)建站步驟的完善服務(wù)體系。一人跟蹤測(cè)試的建站服務(wù)標(biāo)準(zhǔn)。已經(jīng)為成都人造霧行業(yè)客戶提供了網(wǎng)站營(yíng)銷推廣服務(wù)。
修改如下:
#include stdio.h
#include math.h
#define PI 3.1415926
main()
{
FILE *fp;
fp=fopen("f:\\1.txt","w"); //根據(jù)你的文件位置修改路徑。
int i,j;
double w,w1,w2,a,a1,z,z1,h,q,t,m;
double A1,A2,C1,C2,M1,M2,N1,N2;
for(i=0;i95;i++)
{ for(j=0;j10;j++)
{ a=-23.5+0.5*i;
a1=a/180*PI;
h=90-40+a;
m=0.5+0.5*j;
z1=atan(m);
z=z1/PI*180;
q=40.0/180*PI;
M1=1/m*sin(q)+cos(q)*cos(PI);
M2=1/m*sin(q)+cos(q)*cos(0);
N1=1/m*cos(q)-sin(q)*cos(PI);
N2=1/m*cos(q)-sin(q)*cos(0);
A1=-M1*N1*sin(a1);
A2=-M2*N2*sin(a1);
C1=N1*N1*cos(a1);
C2=N2*N2*cos(a1);
w1=acos(A1/C1);
w2=acos(A2/C2);
if(a0)
{ if(h=z) w=2*w1;
else w=2*fabs((w2-w1));
}
else
{ if(h=z) w=0;
else w=2*w2;
}
w=w/PI*180;
t=w/15;
fprintf(fp,"%6.1f",t);
}
fprintf(fp,"\n");
}
fclose(fp);
}
執(zhí)行結(jié)果如下:
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.6 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.8 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
3.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
3.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
4.1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
4.4 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
4.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
5.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
5.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
5.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
5.8 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
6.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
6.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
6.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
6.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
6.9 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
7.1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
7.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
7.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
7.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
7.9 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
8.1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
8.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
8.4 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
8.6 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
8.8 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
9.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
9.1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
9.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
9.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
9.6 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
9.8 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10.1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10.4 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10.6 3.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10.8 4.9 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10.9 6.1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
11.1 7.1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
11.2 8.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
11.4 8.9 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
11.5 9.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
11.7 10.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
11.8 11.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
12.0 12.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
12.0 12.0 0.6 0.3 0.2 0.1 0.1 0.1 0.1 0.1
12.0 12.0 1.2 0.5 0.3 0.3 0.2 0.2 0.2 0.1
12.0 12.0 1.8 0.8 0.5 0.4 0.3 0.3 0.2 0.2
12.1 12.0 2.4 1.0 0.7 0.5 0.4 0.4 0.3 0.3
12.1 12.0 3.0 1.3 0.8 0.6 0.5 0.4 0.4 0.3
12.1 12.0 3.7 1.5 1.0 0.8 0.6 0.5 0.5 0.4
12.1 12.0 4.3 1.8 1.2 0.9 0.7 0.6 0.5 0.5
12.1 12.0 5.1 2.0 1.4 1.0 0.8 0.7 0.6 0.6
12.1 11.9 5.9 2.3 1.5 1.2 0.9 0.8 0.7 0.6
12.2 11.9 6.8 2.6 1.7 1.3 1.1 0.9 0.8 0.7
12.2 11.9 7.9 2.9 1.9 1.4 1.2 1.0 0.9 0.8
12.2 11.9 9.4 3.1 2.1 1.6 1.3 1.1 0.9 0.8
12.2 11.9 11.7 3.4 2.2 1.7 1.4 1.2 1.0 0.9
12.2 11.9 11.7 3.7 2.4 1.8 1.5 1.3 1.1 1.0
12.2 11.9 11.7 4.0 2.6 2.0 1.6 1.4 1.2 1.0
12.3 11.9 11.7 4.3 2.8 2.1 1.7 1.5 1.3 1.1
12.3 11.9 11.7 4.7 3.0 2.3 1.8 1.6 1.4 1.2
12.3 11.9 11.6 5.0 3.2 2.4 2.0 1.7 1.4 1.3
12.3 11.9 11.6 5.4 3.4 2.6 2.1 1.8 1.5 1.3
12.3 11.9 11.6 5.8 3.6 2.7 2.2 1.9 1.6 1.4
12.3 11.9 11.6 6.2 3.8 2.9 2.3 2.0 1.7 1.5
12.4 11.9 11.6 6.6 4.0 3.0 2.4 2.1 1.8 1.6
12.4 11.9 11.5 7.1 4.3 3.2 2.6 2.2 1.9 1.7
12.4 11.9 11.5 7.7 4.5 3.3 2.7 2.3 2.0 1.7
12.4 11.9 11.5 8.3 4.7 3.5 2.8 2.4 2.1 1.8
12.4 11.8 11.5 9.3 5.0 3.7 3.0 2.5 2.2 1.9
12.4 11.8 11.5 11.2 5.3 3.9 3.1 2.6 2.3 2.0
12.5 11.8 11.4 11.2 5.6 4.0 3.2 2.7 2.4 2.1
12.5 11.8 11.4 11.1 5.9 4.2 3.4 2.8 2.5 2.2
12.5 11.8 11.4 11.1 6.2 4.4 3.5 3.0 2.6 2.3
12.5 11.8 11.4 11.1 6.5 4.6 3.7 3.1 2.7 2.3
12.5 11.8 11.4 11.0 6.9 4.8 3.8 3.2 2.8 2.4
12.5 11.8 11.3 11.0 7.4 5.1 4.0 3.3 2.9 2.5
12.6 11.8 11.3 11.0 7.9 5.3 4.2 3.5 3.0 2.6
12.6 11.8 11.3 11.0 8.5 5.6 4.4 3.6 3.1 2.7
12.6 11.8 11.3 10.9 9.5 5.8 4.5 3.8 3.2 2.8
12.6 11.8 11.3 10.9 10.6 6.1 4.7 3.9 3.4 3.0
12.6 11.8 11.2 10.9 10.6 6.5 4.9 4.1 3.5 3.1
12.6 11.8 11.2 10.8 10.5 6.8 5.2 4.2 3.6 3.2
12.7 11.8 11.2 10.8 10.5 7.2 5.4 4.4 3.8 3.3
12.7 11.8 11.2 10.8 10.5 7.7 5.6 4.6 3.9 3.4
12.7 11.7 11.1 10.7 10.4 8.3 5.9 4.8 4.1 3.6
12.7 11.7 11.1 10.7 10.4 9.5 6.2 5.0 4.2 3.7
12.7 11.7 11.1 10.7 10.3 10.1 6.5 5.2 4.4 3.8
12.8 11.7 11.1 10.6 10.3 10.0 6.9 5.4 4.6 4.0
12.8 11.7 11.0 10.6 10.2 10.0 7.4 5.7 4.8 4.1
12.8 11.7 11.0 10.6 10.2 9.9 8.0 6.0 5.0 4.3
可能用到的函數(shù):
函數(shù)名:
fscanf
功
能:
從一個(gè)流中執(zhí)行格式化輸入,fscanf遇到空格和換行時(shí)結(jié)束,注意空格時(shí)也結(jié)束。這與fgets有區(qū)別,fgets遇到空格不結(jié)束。
用法:
int
fscanf(file
*stream,
char
*format,[argument...]);
file
*stream:文件指針;
char
*format:格式字符串;
[argument...]:輸入列表。
例如:
file
*fp;
char
a[10];
int
b;
double
c;
fscanf(fp,"%s%d%lf",a,b,c)
返回值:整型,成功讀入的參數(shù)的個(gè)數(shù)
函數(shù)名:fprintf
傳送格式化輸出到一個(gè)文件中,
可用于打印機(jī)輸出。
用
法
#include
int
fprintf(
file
*stream,
const
char
*format,
...
);
fprintf()函數(shù)根據(jù)指定的format(格式)發(fā)送信息(參數(shù))到由stream(流)指定的文件.
fprintf()只能和printf()一樣工作.
fprintf()的返回值是輸出的字符數(shù),發(fā)生錯(cuò)誤時(shí)返回一個(gè)負(fù)值.
返回值
若成功則返回輸出字符數(shù),若輸出出錯(cuò)則返回負(fù)值。
示例
#include
int
main(void)
{
file
*in,
*out;
if
((in
=
fopen("\\autoexec.bat",
"rt"))
==
null)
{
fprintf(stderr,
"cannot
open
input
file.\n");
return
1;
}
if
((out
=
fopen("\\autoexec.bat",
"wt"))
==
null)
{
fprintf(stderr,
"cannot
open
output
file.\n");
return
1;
}
while
(!feof(in))
fputc(fgetc(in),
out);
fclose(in);
fclose(out);
return
0;
}
樓主的意思是輸出你的結(jié)果把?
看我寫的
==================================================================
#include
#include
int
main()
{
double
x,
a0,a1,f,fd;
x=1.0;
file
*fp;//建立一個(gè)文件操作指針
fp=fopen("1.txt","w+");//以追加的方式建立或打開1.txt,默認(rèn)位置在你程序的目錄下面
do
{a0=x;
f=((a0-18)*a0+95)*a0-150;
fd=(3*a0-36)*a0+95;
x=a0-f/fd;
}
while(x-a0=1.e-5);
printf("\nx=%.6f",x);
fprintf(fp,"\nx=%.6f",x);//同輸出printf一樣,以格式方式輸出到文本中
fclose(fp);//關(guān)閉流
}
#include
"stdio.h"
#include
main()
{
FILE
*fp1;//定義文件流指針,用于打開讀取的文件
FILE
*fp2;//定義文件流指針,用于打開寫操作的文件
char
text[1024];//定義一個(gè)字符串?dāng)?shù)組,用于存儲(chǔ)讀取的字符
fp1
=
fopen("d:\\a.txt","r");//只讀方式打開文件a.txt
fp2
=
fopen("d:\\b.txt","w");//寫方式打開文件a.txt
while(fgets(text,1024,fp1)!=NULL)//逐行讀取fp1所指向文件中的內(nèi)容到text中
{
puts(text);//輸出到屏幕
fputs(text,fp2);//將內(nèi)容寫到fp2所指向文件中
}
fclose(fp1);//關(guān)閉文件a.txt,有打開就要有關(guān)閉
fclose(fp2);//關(guān)閉文件b.txt