______ (make) several experiments, he drew a conclusion.
查看答案
The class teacher caught these two students _______ (cheat) in the exam.
_______ (cook)in a different way, the fish tastes better.
以下程序的功能是:从键盘输入某个分钟数,将其转换成用小时和分钟表示,并将表示结果输出。请在含数字的横线处填空。#includeint main(){int num;int a,b;scanf("1 ", &num);a=num/60;b=2;printf("%d(m)=%d(h):%d(m)",3 ,4 ,b);}
以下程序的功能是:先将输入的两个数存储起来,后要求交换后实现输出,请在含数字的横线处填空。#include "stdio.h"void main(){int x1,x2,Temp;printf("input x1,x2\n");scanf("%d%d",1 );/*键盘输入两个数分别赋予x1,x2变量*/Temp=x1 ;2;x2=Temp;printf("after:\nx1=%d,x2=%d\n",x1,x2);}