TA的每日心情 | 开心 2014-6-18 08:29 |
---|
签到天数: 14 天 [LV.3]偶尔看看II
滴水大师
 
- 积分
- 2345
|
题目
解决代码及点评
- <pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"></pre><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code">/*
- 功能:将一个整数(最多是10位数)从低位到高位打印出来,
- 如该数是12345时,输出应是54321(只占一行)
-
- 时间:19:18 2013/10/24
- */
-
- #include<stdio.h>
- #include<stdlib.h>
-
- void main()
- {
- int num;
- scanf_s("%d", &num);
-
- int bit = 0;
- int n = num; //创建副本,防止num被修改
- while (n > 0) //获取位数
- {
- bit++;
- n /= 10;
- }
- //printf("%d",bit);
- if (bit > 10) //如果位数大于零则返回错误
- {
- printf("ERROR");
- }
- else
- {
- int result = 0; //接收结果
- while (num>0)
- {
- result += num % 10;
- num /= 10;
- result *= 10;
- }
- result = result / 10; //消除循环的影响
- printf("After changed! the number is %d\n",result);
- }
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|