摘要: Description动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。 现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种。 有人用两种说法对这N个动物所构成的食物链关系进行描述: ... 阅读全文
posted @ 2018-02-27 16:51 绿叶萌飞 阅读(203) 评论(0) 推荐(0) 编辑
摘要: #include #include #include int main (){ int a,b; a = 0; while (a<=400) { system ("cls"); b = 1; while (b<=a) { printf(" "); ++... 阅读全文
posted @ 2018-02-27 16:03 绿叶萌飞 阅读(128) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;int num[1000001];//19+199+1999+……+1999…9(1999个9)和是多少?int main(){ int n, t = 2, temp = 0, jin = 0... 阅读全文
posted @ 2018-02-27 16:00 绿叶萌飞 阅读(421) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;int checkCPU(){ union w { int a; char b; } c; c.a = 1; return c.b == 1;//如果低地址还是1说明低地址存放低字节,小端 }//如果低地址... 阅读全文
posted @ 2018-02-27 15:59 绿叶萌飞 阅读(348) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int n, i, count = 0, test; scanf("%d", &n); for (i = 1; i <= n; ++i)// 循环版 { if (i % 4 == 0 && i % 100 != 0 || ... 阅读全文
posted @ 2018-02-27 15:57 绿叶萌飞 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include /*计算catlan数f(n),其递推式如下: 1 n=0 || n=1f(n)={ ∑f(i)*f(n-1-i) n>1,其中i∈[0,n-1]范围整数例如f(2)=f(0)*f(1... 阅读全文
posted @ 2018-02-27 15:54 绿叶萌飞 阅读(196) 评论(0) 推荐(0) 编辑
摘要: #include #include #define LEN 100005/*现有名称为namei且处理时间为timei的n个任务按照顺序排成一列,CPU通过循环调度法逐一处理这些任务,每个任务最多处理q ms(这个时间称为时间片)。如果q ms之后任务尚未处理完毕,那... 阅读全文
posted @ 2018-02-27 15:51 绿叶萌飞 阅读(228) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;//要求1 2 3 4 5 6 7 8 9之间插入运算符+-*/ /*使得'+'个数不小于4个,'*'个数不小于2个输出结果种数*/char a[] = " +-*/";int x[9], c1, c2, co... 阅读全文
posted @ 2018-02-27 15:49 绿叶萌飞 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int X[4] = {}, i, count = 0; int n = 4; for(X[4]=0;X[4]<2;X[4]++) for(X[3]=0;X[3]<2;X[3]++) for(X[2]=0;X[2]<2;... 阅读全文
posted @ 2018-02-27 15:49 绿叶萌飞 阅读(253) 评论(0) 推荐(0) 编辑
摘要: #include int n;int a[100];//测试100个元素以内 int count;int f(int k){ if (!k) { int i; printf("{"); for (i = 1; i <= n; ++i) { if (a[i]... 阅读全文
posted @ 2018-02-27 15:47 绿叶萌飞 阅读(126) 评论(0) 推荐(0) 编辑