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">/************************************************************************/
- /*
- 26. 把一个偶数位的数从当中分开成为两个数,这两个数的和的平方等于原数。
- 如(8+1)2=81,(20+25)2=2025。求10至9999之间满足这样条件的数是哪些? 共有多少个?
- */
- /************************************************************************/
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <string.h>
- //返回数字位数
- int GWS26(int num)
- {
- int count=0;
- while(num)
- {
- count++;
- num/=10;
- }
- return count;
- }
- bool IsSpecal26(int num)
- {
- if (GWS26(num)%2)
- {
- return false;
- }
- else
- {
- int temp=1;
- for (int i=0;i<GWS26(num)/2;i++)
- {
- temp*=10;
- }
- if (num==(num%temp+num/temp)*(num%temp+num/temp))
- {
- return true;
- }
- else
- return false;
- }
- }
- void main()
- {
- int num=0;
- for (int i=10;i<=9999;i++)
- {
- if (IsSpecal26(i))
- {
- printf("%5d",i);
- num++;
- }
- }
- printf("\n这些数字共有%d",num);
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|