c++练习
文章平均质量分 58
GlowChar
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
九度OJ题目解答1000
题目描述:求整数a,b的和。输入:测试案例有多行,每行为a,b的值。输出:输出多行,对应a+b的结果。样例输入:1 24 56 9样例输出:3915My answer:#include using namespace std;int main(){ int a,b;转载 2017-09-13 20:22:04 · 414 阅读 · 0 评论 -
九度OJ题目解答1001
题目描述: This time, you are supposed to find A+B where A and B are two matrices, and then count the number of zero rows and columns.输入: The input consists of several test cases, each原创 2017-09-14 08:28:38 · 511 阅读 · 0 评论 -
九度OJ题目解答1003
题目描述:给定两个整数A和B,其表示形式是:从个位开始,每三位数用逗号","隔开。现在请计算A+B的结果,并以正常形式输出。输入:输入包含多组数据数据,每组数据占一行,由两个整数A和B组成(-10^9 输出:请计算A+B的结果,并以正常形式输出,每组数据占一行。样例输入:-234,567,890 123,456,789原创 2017-09-14 10:52:34 · 539 阅读 · 0 评论 -
九度OJ题目解答1002
题目描述: Grading hundreds of thousands of Graduate Entrance Exams is a hard work. It is even harder to design a process to make the results as fair as possible. One way is to assign each exam prob原创 2017-09-15 16:52:01 · 706 阅读 · 0 评论
分享