-
at sea的二重义
at sea 表面意思 on the ocean After three days at sea we sighted the land. 引申意思 就好像行船之人误入了汪洋大海中的无风带,而四周又是一望无际的海平面。 confused/have no ideas I’m totally at se -
and the rest: and so on的代言人
#and the rest: and so on and the rest 还有其他剩下的东西,就不一一列举了,相当于and so on. -
get to sth/get to doing sth
#get to sth/get to doing sth 开始着手于 begin to give serious attention or deal with Since she produced some videos ,she got to understand it is not a comp -
accord ...to 赋予以..地位
accord ...to 赋予以..地位 一般用来表达重视英语写法有 put emphasis on/put importance on/pay regard to/pay attention to/spotlight. 而用accord的词组也可以用来表示重视的意思 accord the grea -
many 和 many of
many 和 many of 相同 两者都有许多的意思 异 many的许多是比较单纯的许多 Many students are crazy about analog circuit. 而many of的许多是指建立在一定范围内的许多。 故many of长跟these,this,the,those,m -
进制前缀表示
转载 原文地址:http://www.rootop.org/pages/4121.html 二进制(binary): 0b(或者0B)–不区分大小写 八进制(octal): 0o(或者0O)–不区分大小写 十进制(decimal): 0d(或者0D) 十六进制(hexadecimal): 前缀:0x -
各类典例模板
各类典例模板 分数加法(重载加号) 关于重载加号运算符,如果得到的最后还为一个类,记得返回return 类名(参数1,参数2) FS operator+(FS &f) #include<bits/stdc++.h> using namespace std; class FS{ private: in -
复数
#include <iostream> #include <string> #include <cstring> using namespace std; class Complex{ private: string str; float real; float imag; void split() -
大数相除
#include<iostream> #include<cstring> #include<algorithm> using namespace std; const int L=110; int sub(int *a,int *b,int La,int Lb) { if(La<Lb) return -
大数相乘
#include <iostream> #include <string> using namespace std; /* 请在这里填写答案 */ class BigInteger{ protected: int a[3005]; int count; public: BigInteger(){ f