水题
文章平均质量分 74
Toudsour
这个作者很懒,什么都没留下…
展开
-
POJ-1004 Financial Management
POJ-1004 Financial ManagementDescription Larry graduated this year and finally has a job. He’s making a lot of money, but somehow never seems to have enough. Larry has decided that he needs to grab原创 2015-03-30 21:31:09 · 473 阅读 · 0 评论 -
成绩转换
#include int main () { int a; while (scanf("%d",&a)!=EOF) { switch (a/10) { case 0:if (a!=0) { printf("Score is error!\n"); break; } case 1: case 2: case 3: case 4: case 5原创 2014-02-03 10:32:21 · 1353 阅读 · 0 评论 -
NYOJ- 2 括号配对问题
括号配对问题描述 现在,有一行括号序列,请你检查这行括号是否配对。 输入 第一行输入一个数N(0<N<=100)(0<N<=100),表示有N组测试数据。后面的N行输入多组输入数据,每组输入数据都是一个字符串S(S的长度小于10000,且S不是空串),测试数据组数少于5组。数据保证S中只含有”[“,”]”,”(“,”)”四种字符 输出 每组输入数据的输出占一行,如果该字符串中所含的括号是原创 2015-04-26 17:04:54 · 1244 阅读 · 0 评论