马上加入,结交更多好友,共享更多资料,让你轻松玩转电力研学社区!
您需要 登录 才可以下载或查看,没有账号?立即加入
×
我现在在用c语言将数据从文件里读入数据出现了一些问题,希望能给予指正。9 J; [9 @8 t1 Z" x3 O; G
>谢谢!
9 u0 S" G) `+ k4 ?>文件date1里的数据是:1,2
4 Y" T2 W. Z+ ?; b* j> 3.2,4
5 A; A ?8 D P8 D' ?3 r* y! `> 1.1,2,4
; m, {% o7 O. p7 y> 5,3,4.3. d4 B7 D. y" B' L$ Q( n) H* Q5 C
>#include<stdio.h>5 g9 t+ h+ T* ?. L
>void main()) _, w/ N' @0 T( p+ m) b6 I- M
>{. a* ~, ]. _" ?5 w7 ]3 m
>FILE *in,*out;1 m: [; Y- S& }
>float a[2][2],b[2][3];5 A- A( Y+ s6 ^
>int i;1 W: F. P% S6 Y9 i
>clrscr();3 q6 d0 K3 b: X) m
>if((in=fopen("date1.txt","r"))==NULL)$ r8 J8 C5 Z4 G
>{printf("cannot open this file\n");
7 D& |9 U, o: @; a8 j>exit(0);}
: D3 M- P( @$ x7 ~' B, i>if((out=fopen("result.txt","w"))==NULL)9 q' A3 {/ |0 r* `
>{printf("cannot open this file\n");$ x. _; a0 k8 g+ ]5 S& [, C
>exit(0);}
- Y2 ]7 K7 b+ S. ~6 q5 S>rewind(in);
/ q: n6 S! L( [>for(i=0;i<2;i++); L# X" h" C9 B: z y
>{fscanf(in,"%f,%f",&a[i][0],&a[i][1]);
" B9 @' F! c+ P. _2 m4 n+ T- E" X& f: d>printf("%f,%f",a[i][0],a[i][1]);0 r+ W/ t# Y H& H2 f+ ]! X% L
>fprintf(out,"%f,%f,",a[i][0],a[i][1]);}
/ ^# q: i, Z# Q) ^* I, J4 b>for(i=0;i<2;i++)8 B6 N) O$ B5 F' b/ q
>{fscanf(in,"%f,%f,%f",&b[i][0],&b[i][1],&b[i][2]);4 B; y1 f+ o, l* s# i7 U! q$ i* E
>printf("%f,%f,%f",b[i][0],b[i][1],b[i][2]);
3 W' M8 L# h( D$ d$ O>fprintf(out,"%f,%f,%f",b[i][0],b[i][1],b[i][2]);}/ @; l& a1 t6 \! F4 p
>}
1 z: W% ], L# ?+ @4 Y5 t# V' s1 J>运行后出现 scanf : floating point formats not linked* @' q% U% A; |$ p6 X: \- E
>Abnormal program termination7 B- `8 H# S" b. P
6 \3 n. q! C& t请问哪位高手能指点一下。实在是感激不尽。 |