摘要: Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains an integer N in the first line, and then N lines follow. Eac... 阅读全文
posted @ 2014-12-05 20:31 liuwt365 阅读(252) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to Calculate a + b.InputThe input will consist of a series of pairs of integers a and b, separated by a space, one pai... 阅读全文
posted @ 2014-12-05 20:29 liuwt365 阅读(275) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains multiple test cases, and one case one line. Each case starts... 阅读全文
posted @ 2014-12-05 20:28 liuwt365 阅读(212) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains an integer N in the first line, and then N lines follow. Eac... 阅读全文
posted @ 2014-12-05 20:27 liuwt365 阅读(319) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to Calculate the sum of some integers.InputInput contains multiple test cases. Each test case contains a integer N, an... 阅读全文
posted @ 2014-12-05 20:26 liuwt365 阅读(312) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to Calculate a + b.InputInput contains multiple test cases. Each test case contains a pair of integers a and b, one pa... 阅读全文
posted @ 2014-12-05 20:24 liuwt365 阅读(243) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to Calculate a + b.InputInput contains an integer N in the first line, and then N lines follow. Each line consists of ... 阅读全文
posted @ 2014-12-05 20:23 liuwt365 阅读(396) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to Calculate a + b.Too easy?! Of course! I specially designed the problem for acm beginners.You must have found that s... 阅读全文
posted @ 2014-12-05 20:22 liuwt365 阅读(429) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入一个用年月日表示的日期,求该日期是该年的第几天。输入某年的第几天,输出这一天是该年的几月几号,茂茂解不出,需要你的帮助。Input开始有个整数k,表示询问的种类,如果k=1,后面有三个合法的整数a,b,c,表示输入的年月日,此时输出该日期是该年的第几天;如果... 阅读全文
posted @ 2014-12-05 20:15 liuwt365 阅读(528) 评论(0) 推荐(0) 编辑
摘要: Problem Description输出n*m的弓型矩阵Input多组测试数据 每组输入2个整数 n和m(不大于20)Output输出n*m的弓型矩阵,要求左上角元素是1,(每个元素占2个位置,靠右)Sample Input4 3Sample Output 1 2 3 6 5 4 7 8... 阅读全文
posted @ 2014-12-05 20:13 liuwt365 阅读(723) 评论(0) 推荐(0) 编辑
摘要: Problem Description计算中心有8个机房,每个机房有n台电脑。每台电脑都有一个编号,比如8号机房编号就为H1到Hn,我们有时又称为H1为1号机器,H2为2号机器,...。 有一天我们学校跻身世界高校100强,全校所有师生都进行了狂欢庆祝。罗老师是个很爽快的人,也很喜欢喝酒,那天他喝多... 阅读全文
posted @ 2014-12-05 20:10 liuwt365 阅读(1359) 评论(0) 推荐(1) 编辑
摘要: Problem Description这天老师给小豪出了一道很简单题目放松:输入一个分数,让你求出它们的最简分数。Input第一行包括一个T,表示测试数据的组数。接下来T行每行包括一个分数。(分子分母均在int范围内)Output对于每个测试样例,输出一行其最简分数。Sample Input32/6... 阅读全文
posted @ 2014-12-05 20:08 liuwt365 阅读(425) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入两个整数,判断他们是否互质。Input两个整数。(多组数据)Output如果他们互质,则输出“yes”,否则,输出“no”。Sample Input2 3Sample Outputyes我的代码: 1 #include 2 #include 3 #in... 阅读全文
posted @ 2014-12-05 20:06 liuwt365 阅读(263) 评论(0) 推荐(0) 编辑
摘要: Problem Description大家都知道,手机号是一个11位长的数字串,同时,作为学生,还可以申请加入校园网,如果加入成功,你将另外拥有一个短号。假设所有的短号都是是 6+手机号的后5位,比如号码为13512345678的手机,对应的短号就是645678。现在,如果给你一个11位长的手机号码... 阅读全文
posted @ 2014-12-05 20:04 liuwt365 阅读(611) 评论(0) 推荐(0) 编辑
摘要: Problem Description求Sn=2+22+222+…+22…222(有n个2)的值。 例如:2+22+222+2222+22222(n=5),n由键盘输入。InputnOutput和Sample Input5Sample Output24690我的代码: 1 #include 2 v... 阅读全文
posted @ 2014-12-05 20:01 liuwt365 阅读(448) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入一串字符,统计这串字符里的字母个数,数字个数,空格字数以及其他字符(最多不超过100个字符)Input多组测试数据,每行一组Output每组输出一行,分别是字母个数,数字个数,空格字数以及其他字符个数Sample InputI am a student in... 阅读全文
posted @ 2014-12-05 19:59 liuwt365 阅读(475) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入年份,判断是否闰年Input输入一个整数n(多组数据)Output如果是闰年,输出yes,否则输出no(每组数据一行)Sample Input2000Sample Outputyes我的代码: 1 #include 2 int main() 3 { ... 阅读全文
posted @ 2014-12-05 19:56 liuwt365 阅读(492) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionCalculateA + B.InputEach line will contain two integersAandB. Process to end of file.OutputFor each case, outputA + Bin one line.Sa... 阅读全文
posted @ 2014-12-05 19:53 liuwt365 阅读(424) 评论(0) 推荐(0) 编辑