题目内容

执行以下程序后,文件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方法(相等比例法)的基本思想是:将席位分配给()的一方。

已知甲方100人,已分配席位为10人;乙方50人,已分配席位为5人。按照EP方法,下一个席位应配分给哪一方?

答案查题题库