题目内容

Directions: Watch the video clip and write “T” for the true statements and “F” for the false statements according to the clip.1. Janet looks a bit worried, upset or fed up.2. Kate is busy with her essay.3. Sometimes Janet feels like a moody teenager.4. Kate tries to comfort Janet by telling her funny stories.5. Kate believes it is abnormal for Janet to feel homesick after having a phone call from her parents.

查看答案
更多问题

某学生的记录由学号、姓名、八门课成绩、总成绩和平均分组成,分析下列程序,其功能是:运行结果为:。struct student{ intnum;//学号charname[20];//姓名float s[8];//八门课成绩float sum;//成绩和floatave;//平均成绩};intmain( ){ struct student s1={1101,"李小明",90,96,95,98.5,85,89.5,94,96};int i;s1.sum=0;for(i=0;i<8;i++)s1.sum=s1.sum+s1.s[i];s1.ave=s1.sum/8;printf("\n平均分是:%f\n",s1.ave);}

分析以下程序段,写出它的运行结果:。struct teacher{ int No;char name[10];char sex[4];int age;};int main( ){struct teachers1={100129,"张三",“男”,41};strcpy(s1.name, "李四")s1.age=36;printf("%d:%s,%s,%d \n", s1.No,s1.name,s1.sex,s1.age );}

分析以下程序段,写出它的功能: 。int main(){int a,b,c, *p1,*p2, *p3,max;p1=&a;p2=&b;p3=&c;scanf("%d%d%d",p1,p2,p3);if(*p1>*p2) max=*p1;else max=*p2;if(max<*p3) max=*p3;printf("max=%d\n",max);}

分析以下程序,其实现的功能为:。#includeintmain( ){ int a=5,b=1,sub;int *p1,*p2;p1=&a;p2=&b;sum=*p1-*p2;printf("sub=%d\n",sub);}

答案查题题库