CCF
躺平平的弱鸡
IT界资深菜鸟。。
展开
-
CCF权限查询
问题描述试题编号:201612-3试题名称:权限查询时间限制:1.0s内存限制:256.0MB问题描述:问题描述 授权 (authorization) 是各类业务系统不可缺少的组成部分,系统用户通过授权机制获得系统中各个模块的操作权限。 本题中的授权机制是这样原创 2017-03-14 17:45:58 · 284 阅读 · 0 评论 -
CCF炉石传说
心得:写这种题关键就是操作分开写,写完一个测试一个。要不然代码多,调试困难,思路乱,导致做错。代码:#include #include #include #include using namespace std;struct sss{ int health; int attack;};int f,fff;struct hero{ int原创 2017-03-15 20:19:39 · 466 阅读 · 0 评论 -
CCF俄罗斯方块
心得:记录坐标就好。代码:#include int a[20][20];int b[5][5];int pos,co;struct node{ int x,y;}c[5];int main(){ for(int i = 1;i <= 15;++i) for(int j = 1;j <= 10;++j)原创 2017-03-16 18:24:57 · 1015 阅读 · 2 评论