有毒的粽子

2019年9月16日

Codeforces Round #585 (Div. 2) CF1215A~C

摘要: CF1215A. Yellow Cards简单的模拟,给定了黄票张数,判断最少和最多有多少人被罚下场。 #include <bits/stdc++.h> using namespace std; int main() { int a,b,aa,bb,n,nnn; cin>>a>>b>>aa>>bb> 阅读全文

posted @ 2019-09-16 22:42 有毒的粽子 阅读(217) 评论(0) 推荐(0) 编辑
图书管理系统,数组存储和链表存储

摘要: #include <bits/stdc++.h> using namespace std; fstream in,out; int n=0; string temp[4]; struct book { string isbn; string name; double price; }b[205]; 阅读全文

posted @ 2019-09-16 17:31 有毒的粽子 阅读(496) 评论(0) 推荐(0) 编辑