会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Acoccus
靡不有初,鲜克有终
管理
上一页
1
2
3
4
5
2018年12月8日
3.3-1933 problem A
摘要: #include int main(void){ int h; while(scanf("%d", &h) != EOF){ int a = h + 2 * (h-1); for(int i=0; i<h; i++){ for(int k = 0; k < a - (h + 2 * i); k++) printf(" "); ...
阅读全文
posted @ 2018-12-08 23:22 Acoccus
阅读(104)
评论(0)
推荐(0)
2018年12月5日
3.2-1937 Problem D
摘要: #include const int maxn = 100; int a[maxn] = {0}; int b[maxn]= {0}; int main(void) { int n; while(scanf("%d", &n) != EOF){ for(int i=0; i<n; i++){ scanf("%d", a+i); ...
阅读全文
posted @ 2018-12-05 22:59 Acoccus
阅读(110)
评论(0)
推荐(0)
2018年12月1日
算法笔记 3.2 codeup1935 查找学生信息
摘要: #include #include const int maxn = 1e3; struct student{ char id[10]; char name[70]; //!!!!!!! char gender[3]; int age; } stu[maxn]; int main(void){ int n; while...
阅读全文
posted @ 2018-12-01 00:46 Acoccus
阅读(259)
评论(0)
推荐(0)
算法笔记 3.2 codeup1934 找X
摘要: #include const int maxn = 300; int a[maxn]; int main(void){ int n; while(scanf("%d", &n)!=EOF){ for(int i=0; i<n; i++){ scanf("%d", a+i); } int x; scanf("%d", &x); ...
阅读全文
posted @ 2018-12-01 00:07 Acoccus
阅读(233)
评论(0)
推荐(0)
上一页
1
2
3
4
5
公告