唐代舞蹈兴盛的主要原因有( )
A. 政治稳定、经济繁荣、军事强大
B. 丰厚的乐舞积淀
C. 诊视歌舞,以善舞为荣
D. 歌舞活动空间广泛
E. 新乐的传入与创作
以下程序由终端键盘输入一个文件名,然后把终端键盘输入的字符依次存放到该文件中,用#号作为结束输入标志。请填空#include #include main() {FIlE*fp; char ch, fname[10]; printf("Enter the name of file\n");gets(fname); if((fp=_____)==NULL){ printf("Openerror\n"); exit(0);} printf("Enter data:\n"); while((ch=getchar())!='#')fputc(_____,fp); fclose(fp); }
以下程序用来统计文件中字符的个数。请填空#include main() {FILE *fp;long num=0;fp=fopen("fname.dat",____);while _____{ _____; num++;}printf("num=%ld\n",num);fclose(fp);}
假定磁盘当前目录下有文件名为a.dat、b.dat、c.dat三个文本文件,文件中内容分别为aaaa#、 bbbb# 、cccc#,执行以下程序后将输出_____