摘要:
题目分析:给定正整数数字N,然后紧跟N个正整数,为电梯停靠楼层的请求序列,该题比较简单,但要正确理解题意,刚开始的时候看到3 2 3 1,竟误以为请求序列会有相同的数值出现(唉,IQ略显拙计啊),理解清题意后,模拟其过程就很简单了。题目源代码: #include using namespace std; const int max_size=102; int main(){ int n,buf[max_size],sum; cin>>n; sum=5*n; buf[0]=0; for(int i=1;i>buf... 阅读全文
摘要:
题目分析:该题比较简单,对输入的整数各位数相加,对应的和的每一位以英文形式输出,注意10100该数值较大,超出int型和long long型的表示范围,考虑用字符串接收后在转换为int型,不要遗漏掉特殊情况,比如和为0的时候。源代码如下: #include #include using namespace std; //输出转换函数,将数字转换为对应英文,注意端点对输出格式的要求 string trans(int a){ switch(a){ case 1: return "one"; ... 阅读全文
摘要:
1019. General Palindromic Number (20)时间限制 400 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a pali... 阅读全文