上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 28 下一页
摘要: 短语及固定搭配1. abide by =be faithful to ; obey)忠于;遵守。2. be absent from…. 缺席,不在3. absence or mind(=being absent-minded) 心不在焉4. absorb(=take up the attention of)吸引…的注意力(被动语态)be absorbed in 全神贯注于…近:be engrossed in ; be lost in ; be rapt in ;be concentrated on ; be focused on ; be centered on5. (be) abundant 阅读全文
posted @ 2013-11-22 20:12 博园少主 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 四级写作资料 ?万能开头 It goes withoutsaying that_____________has become a matter of public concern in recent years. ?万能废话 According to a recent survey ,approximately 78.9% of…?万能看法 It is universally acknowledged that the more we are aware of it , the more benefits we could obtain from this. ?万能意义重要性 There is 阅读全文
posted @ 2013-11-22 20:11 博园少主 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1.alter v. 改变,改动,变更2.burst vi.,n. 突然发生,爆裂3.dispose vi. 除掉;处置;解决;处理(of)4.blast n. 爆炸;气流 vi. 炸,炸掉5.consume v. 消耗,耗尽6.split v. 劈开;割裂;分裂 a.裂开的7.spit v. 吐(唾液等);唾弃8.spill v. 溢出,溅出,倒出9.slip v. 滑动,滑落;忽略10.slide v. 滑动,滑落 n. 滑动;滑面;幻灯片11.bacteria n. 细菌12.breed n. 种,品种 v. 繁殖,产仔13.budget n. 预算 v. 编预算,作安排14.candi 阅读全文
posted @ 2013-11-22 20:09 博园少主 阅读(965) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-11-19 19:20 博园少主 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #include int partition(int A[], int p, int q) { int x = A[p]; int i = p; int j; for (j=p+1; jint quick_sort(int a[], int low, int high)//一趟排序找出并确定枢轴位置{ int key = 0; a[0]= a[low]; key = a[low]; while (low = key) high--; a[low] = a[high]; while (low int quick_sort... 阅读全文
posted @ 2013-11-19 18:51 博园少主 阅读(118) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;const int N=50;const int M=50;char a[N][M];bool pathed[N][M];//留下足迹数组short int p[4][2]={-1,0,0,1,1,0,0,-1};//行走方向数组int n,m;//行列变量int dfs(int,int);int main(){ int i,j,sum; while (scanf("%d%d",&n,&m)!=EOF) { sum=0; memset(pathed,0,sizeof(pathed)); ... 阅读全文
posted @ 2013-11-19 18:42 博园少主 阅读(258) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;const int N=100;const int M=100;typedef struct //定义迷宫结构{ char c; short int p_row,p_col,step;}Maze;Maze a[N][M];bool pathed[N][M]; //留下足迹数组short int p[4][2]={-1,0,0,1,1,0,0,-1};//行走方向数组int n,m;//行列变量int bfs(int,int);typedef struct //定义队列结构{ int row,col... 阅读全文
posted @ 2013-11-19 18:40 博园少主 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 分拆素数和Problem Description把一个偶数拆成两个不同素数的和,有几种拆法呢? Input输入包含一些正的偶数,其值不会超过10000,个数不会超过500,若遇0,则结束。 Output对应每个偶数,输出其拆成不同素数的个数,每个结果占一行。 Sample Input30260 Sample Output32 #include using namespace std;int f(int n){int i;for(i=2;i*i>n,n) { s=0; for(i=2;iusing namespace std;#define N 10000int... 阅读全文
posted @ 2013-11-19 18:27 博园少主 阅读(142) 评论(0) 推荐(0) 编辑
摘要: //开灯问题#include #include using namespace std;const int m=1000+10;int main( ){ int n,k,a[m],i,j,flag=1; cin>>n>>k; memset(a,-1,sizeof(a)); for (j=1;jint main( ){ int k,i,tag ;for(i=2;i<100;i++){ tag=0; for(k=2;k<i;k++) if(i%k==0) tag=1 ; if(tag==0) printf("%d",i);} } 阅读全文
posted @ 2013-11-19 14:02 博园少主 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int i,j,n,s,k; int a[1000]; while(scanf("%d",&n)&&n!=-1) { s=0; k=0; for(j=1;jint main(){ int n,i,j,s,k,a[10000]; scanf("%d",&n); { s=0; k=0; for (j=1;jint main(){ int n,i,j,s; scanf("%d",&n); { s=0; for (j=1;jint main( ){ ... 阅读全文
posted @ 2013-11-19 13:58 博园少主 阅读(281) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 28 下一页