1.the calculater was invented after the computer .(改为同义句)

lhy2402022-10-04 11:39:544条回答

1.the calculater was invented after the computer .(改为同义句)
the computer was invented _______ _______ the calculater.
2.the boss made the workers woke 12 hours a day.(改为被动语态)
the workers _________ ___________ __________12 hours a day by the boss.

已提交,审核后显示!提交回复

共4条回复
梦随心飞翔 共回答了25个问题 | 采纳率92%
out before 表状态
were made to work ,make sb.do sth.
被动语态用:be made to do sth.所以用动词不定式
1年前
s_120 共回答了1个问题 | 采纳率
earlier than
少了一个空were made to work
没有be made doing 这种用法
1年前
兰香gg 共回答了22个问题 | 采纳率
1.the calculater was invented after the computer .(改为同义句)
the computer was invented ahead of/ earlier than the calculater.
原句计算器做主语,比电脑发明的晚,修改后电脑作主语比计算器发明的早。
2.the boss made the workers ...
1年前
搭上末班 共回答了3个问题 | 采纳率
你的问题可能有误,第一道应当是The computer was invented bofore the calculater.第二道中那个woke应该是work,答案应该是The workers were made working 12 hours a day by the boss.因为被动语态中是be made to do ,也可以be made doing!表示被要求一直做这事!
1年前

相关推荐

calculater和calculator的区别
身体在颤抖1年前1
shdfghiosdhoifhi 共回答了25个问题 | 采纳率88%
前者:
n. 计算器;计算机;计算员
后者:
n. 计算器;计算者
同义句转换(初三的,一句)The calculater was invented before the computer
同义句转换(初三的,一句)
The calculater was invented before the computer.
转化为:
The calculater was invented ______ ______ the computer.
钱来佛主1年前2
856yt 共回答了17个问题 | 采纳率82.4%
应当用earlier than
个人认为ahead of是错误的
develop a program to calculater the least common multiple of
develop a program to calculater the least common multiple of two numbers input from the keyboard
神奇的帕吉特1年前1
634882230_yy 共回答了17个问题 | 采纳率88.2%
#include
void main()//辗转相除法求最大公约数,然后最小公倍数=a*b/最大公倍数
{
int m, n, a, b, t, c;
printf("Input two integer numbers:n");
scanf("%d%d", a, b);
m=a;n=b;
while(b!=0)/* 余数不为0,继续相除,直到余数为0 */
{ c=a%b;
a=b;
b=c;}


printf("The least common multiple:%dn", m*n/a);
}