已有 1678 次阅读
标签:
转载 |
标签:
文化 |
分类: 提高自己 |
在通常情况下,修饰被动语态的副词一定要放在助动词be与过去分词之间。如:
She was badly paid. 她挣的钱很少。
She was badly paid. 她挣的钱很少。
He was deeply offended. 他被深深地触怒了。
The trip was well organized. 旅行组织得很好。
He was badly shocked by his fall. 他摔了一跤,吓得够呛。
He was rightly / justly punished. 他得到了正当的惩罚。
I was rightly / correctly informed. 我得到了正确的消息。
She was fatally injured in the crash. 她在这次车祸中受了致命的重伤。
He was badly injured in the last match. 在最后一场比赛中他受了重伤。
Tom’s all right himself, but his wife is badly hurt. 汤姆自己倒还好,但他的妻子却伤得厉害。
I was deeply impressed by her anxiety not to disturb anyone. 她生怕惊动任何人的心绪给我留下深刻的印象。
Although the pilot was badly hurt he was able to explain what had happened. 飞行员的伤势虽然很重,
标签:
文化 |
分类: 提高自己 |
e.g. 是拉丁文 exempli gratia 的缩写,它的意思是“举个例子,比如”,等同与“for
example”,目的就是用几个例子来说明前面的观点。
etc.就比较好理解了,它是 etcetera 的缩写,意思是“等等”,相当于“and so on”
e.g. 和 etc. 不能出现在同一句话中,因为 e.g.
是表示泛泛的举几个例子,并没有囊括所有的实例,其中就已经包含“等等”,如果再加一个 etc.
就画蛇添足了,例如下面这句话就是错的:
Writing instructors focus on a number of complex skills that
require extensive practice (e.g., organization, clear expression_r,
logical thinking, etc.)
注意,用它们的时候,不要把“小点”给落了~
看看下面4句句子,你能说出哪些是正确的,哪些是错误的吗?
1. The evaluation noted that the employee had frequently exhibited
irresponsible behavior (i.e., coming to work late, failing to
complete projects).
2. Writing instructors
标签:
it |
分类: c语言/算法 |
1.
int n;
scanf('%d',&n);
char s[255];
sprintf(s, '%d.txt', n);
fp=fopen(s,'w');
2.
使用sprintf函数来生成一个字符串,然后用这个字符串来作为文件名。
例如:
char buffer[256];
sprintf( buffer,
'Solubility Sb(%.2f)Pb(%.2f)Ag(%.2f)H(%.2f).txt',
Sb_t, Pb_t, Ag_t, H );
sprintf函数的用法
1、该函数包含在stdio.h的头文件中。
2、sprintf和平时我们常用的printf函数的功能很相似。sprintf函数打印到字符串中,而printf函数打印输出到屏幕上。sprintf函数在我们完成其他数据类型转换成字符串类型的操作中应用广泛。
3、sprintf函数的格式:
int sprintf( char *buffer, const char *format [, argument,...] );
除 了前两个参数固定外,可选参数可以是任意个。buffer是字符数组名;format是格式化字符串(像:'=%6.2f%#x%o',%与#合用 时,自动在十六进制数前面加上0x)。只要在printf中可以使用的格式化字符串,在sprintf都可以使用。其中的格式化字符串是此函数的精华。
标签:
theoremcorollarylemma |
首先、定义和