in addition to 和 except for

except for 除了...以外(与 except for 连用的整体词与 except for 所跟的词往往不是同类的,是指整体中除去 一个细节。)

eg:Your composition is good except for a few spelling mistakes.   
     除了几处拼写错误以外, 你的作文写得很好。

in addition to除...之外(还)【及物】

eg:In addition to French, he has to study Japanese. 
    除了法语外,他还得学日语。

时间: 2024-11-09 15:50:20

in addition to 和 except for的相关文章

[20160704]Addition program that use JOptionPane for input and output

1 //Addition program that use JOptionPane for input and output. 2 3 import javax.swing.JOptionPane; 4 5 public class Addition{ 6 public static void main(String[] args) { 7 String firstNumber=JOptionPane.showInputDialog("Enter first integer!"); 8

HDU 2451 Simple Addition Expression(组合数学)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2451 Problem Description A luxury yacht with 100 passengers on board is sailing on the sea in the twilight. The yacht is ablaze with lights and there comes out laughers and singing from the hall where an

[ACM] ZOJ Martian Addition (20进制的两个大数相加)

Martian Addition Time Limit: 2 Seconds      Memory Limit: 65536 KB   In the 22nd Century, scientists have discovered intelligent residents live on the Mars. Martians are very fond of mathematics. Every year, they would hold an Arithmetic Contest on M

SVN: is scheduled for addition, but is missing

删除目录后点commit提交,可是报错.报错内容例如以下: 提示 "svn: Commit failed (details follow): svn: '/***/xxx.c' is scheduled for addition, but is missing " 原因:之前用SVN提交过的文件.被标记为"add"状态.等待被增加到仓库.若此时你把这个文件删除了,SVN提交的时候还是会尝试提交这个文件,尽管它的状态已经是 "missing"了.

HDOJ 1002 A + B Problem II (Big Numbers Addition)

题目链接在此?http://acm.hdu.edu.cn/showproblem.php?pid=1002 这题也比较简单,只需要开三个长度为1000的char数组来分别储存a.b.ans,再利用我们加法的算法,先向右对齐再相加.注意一下进位时的特殊情况就好了. 不过笔者的代码写好后提交上去,两次Presentation Error,然后才发现只是最后多输出一个空行的问题  =.= Orz /**  * HDOJ 1002 A + B Problem II  * Big Numbers Addi

HDU 2451 Simple Addition Expression

Simple Addition Expression Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1508    Accepted Submission(s): 576 Problem Description A luxury yacht with 100 passengers on board is sailing on the s

Lintcode: Hash Function && Summary: Modular Multiplication, Addition, Power && Summary: 长整形long

In data structure Hash, hash function is used to convert a string(or any other type) into an integer smaller than hash size and bigger or equal to zero. The objective of designing a hash function is to "hash" the key as unreasonable as possible.

svn在commit后报错:is scheduled for addition, but is missing

删除文件夹后点commit提交,但是报错,报错内容如下: 提示 "svn: Commit failed (details follow): svn: '/***/xxx.c' is scheduled for addition, but is missing " 原因:之前用SVN提交过的文件,被标记为"add"状态,等待被加入到仓库.若此时你把这个文件删除了,SVN提交的时候还是会尝试提交这个文件,虽然它的状态已经是 "missing"了. 解

centos安装vbox addition

在centos下安装vbox addition需要下载当前内核的头文件 ? 1 yum install kernel-devel 但是下载了头文件后,仍然失败,原来是下载的头文件与当前的内核版本不对应, 于是,只好,更新内核 ? 1 yum install kernel 重启,使用新版本内核启动,再安装vbox addition.

【HDOJ】2451 Simple Addition Expression

递推,但是要注意细节.题目的意思,就是求s(x) = i+(i+1)+(i+2),i<n.该表达中计算过程中CA恒为0(包括中间值)的情况.根据所求可推得.1-10: 31-100: 3*41-1000: 3*4*41-10000: 3*4*4*41-10^n: 3*4^(n-1).并且需要注意,一旦发现某一位大于3,则应立即跳出累加的循环.比如,f(133) = 24,f(143) = 24.同时,单独讨论个位的情况.28行的break处理该种情况. 1 #include <cstdio&g