题目内容

Listen again and choose. 听录音,选出李伟及妈妈为应对台风所做的准备。[音频]注意构词法的应用:flashlight, flowerpot, passerby,这些词都是由两个单词连在一起构成的。了解构词法就不难猜出它们的意思。

A. Listen to the forecast and track the typhoon.
B. Reinforce the windows.
C. Buy enough food and water.
D. Pick up some basic medical supplies.
E. Water the flowers

查看答案
更多问题

电脑测评结果

【8-4】(3)程序填空程序功能:删除一个字符串中的所有大写字符。填空完成本题。#include void delnum(char *s){int i,j;for(i=0,j=0; 【1】 ;i++)if(s[i]<'A'【2】 s[i]>'Z'){【3】;j++;}s[j]='\0';}int main (){char item[50];printf("\n input a string:\n");gets(item);【4】;printf("\n%s",item);return 0;}

【8-4】(4)程序填空程序功能:找出一批正整数中的最大的偶数。填空完成本题。#include #define N 15【1】{int i,max;max=0;for(i=0;i

【8-5】(1)程序改错:输入一行英文文本,将每一个单词的第一个字母变成小写。#include #include //tolower函数,toupper函数(小写转大写)的头文件/**********【1】FOUND**********/void fun(char p){int k=0;/**********【2】FOUND**********/do while(*p=='\0'){if(k==0&&*p!=' '){*p=tolower(*p);//tolower是系统函数,功能是将大写字母转换为小写字母/**********【3】FOUND**********/k=0;}else if(*p!=' ')k=1;elsek=0;/**********【4】FOUND**********/*p++;}}int main(){void fun(char *p);char str[81];printf("please input a English text line:");gets(str);printf("The original text line is :");puts(str);fun(str);printf("The new text line is :");puts(str);return 0;}

答案查题题库