以下程序执行后,文件data.txt的内容是( )。int main(){ FILE *fp;struct worker{ int n;float wt;}a;a.n=102;a.wt=68.5;fp=fopen("data.txt","w");fprintf(fp,"%d,%.1f\n",a.n,a.wt);fclose(fp);}
A. 170.5
B. 102,68.5
C. 102
D. 68.5
查看答案
执行以下程序后,文件test.txt的内容是( )。#include int main(){ FILE *fp;char str[][10]={"hello","world"};fp = fopen("test.txt", "w");if(fp!=NULL)fprintf(fp,"%s",str[1]);fclose(fp);fp = fopen("test.txt", "w");if(fp!=NULL)fprintf(fp,"%s",str[0]);fclose(fp);return 0;}
A. world
B. hello
C. hello world
D. world hello
以下程序运行后,data.txt文件中的内容是( )。#include int main(){ FILE *fp;char str[]="GoodNight!";int i=0;fp=fopen("d:\\data.txt","w");while(i<4){ fprintf(fp,"%c",str[i]);i++;}fclose(fp);return 0;}
A. Night
B. GoodNight!
C. GoodN
D. Good
Hamilton(比例加惯例)方法的基本思想是:已知份额向量q,找一个非负整数分配向量n,使得().
A. n与q相等
B. n与q最接近
C. n与q间隔最远
D. n与q不相等
EP方法(相等比例法)的基本思想是:将席位分配给()的一方。