摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1008水题,主要是逻辑关系搞清楚!2usingnamespacestd;3#include<iostream>4intmove(intc,intn){5if(c < n)return(n-c)*6 + 5;6elsereturn(c-n)*4 + 5;7}89intmain()10{11intn, curfloor, nextfloor, time;12while(scanf("%d", &n)){13if(n == 0)break;14time = c 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1062小结:水题,注意最后一行别输出空格就行!用到了栈这种数据结构!CODE:#include<stdlib.h>#include<stdio.h>#include<string.h>#include<stack>usingnamespacestd;stack<char>s;constintSIZE=1001;charsz1[SIZE];charsz2[SIZE];voidoutput(charsz1[]){intlen=strlen(sz 阅读全文