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">/*
- 19. 找3个数字,填在下面式子中,使等式成立。
- _6325 = 6325_ × ____ (等号左边是五位)
- 1,若答案有多个,则打印一组即可;
- 2,若无满足条件的数字,则显示'NO DIGITALS'。
- */
- #include <stdio.h>
- #include <stdlib.h>
- void main()
- {
- int data = 6325;
- int temp1;
- int temp2 = data * 10;
- int flag = 1;//结束标志
- for (int i = 1; i <= 9; i++)
- {
- temp1 = i * 10000 + data;
- for (int j = 0; j <= 9; j++)
- {
- temp2 = temp2 + j;
- for(int k = 0; k < 100; k++)
- {
- if (temp1 == temp2 * k)
- {
- flag = 0;
- printf("temp1 = %d",temp1);
- break;
- }
- }
- }
-
- }
- if(flag)
- {
- printf("NO DIGITALS\n");
- }
- system("pause");
- }</pre><br></pre></pre></pre>
|
|