关于运算符的问题
需求:编写一个程序,求出200到300之间的数,且满足条件:它们三个数字之积为42,三个数字之和为12。我的代码如下图所示。
count3的运算是如何运行的,为何得不出理想的结果
本帖最后由 风过无痕1989 于 2020-11-5 17:17 编辑
假如 i = 693
i - i / 100 - (i % 100) / 10
= 693 - 6 - ( 93 ) / 10
= 693 - 6 - 9
= 678 本帖最后由 _匆匆来也 于 2020-11-5 18:48 编辑
你写错了,只要代入一个数试一试,就能发现错的离谱
参考一下我的
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("这样的数有:\n");
int i, count1, count2, count3;
for (i = 200; i <= 300; i++)
{
// 得到百位上的数字 例如 203/100=2
count1 = i / 100;
// 得到十位上的数字 例如 203-2*100=3,3/10=0
count2 = (i - count1 * 100) / 10;
// 得到个位上的数字 例如 203 - 2*100 - 0*10 = 3
count3 = i - count1 * 100 - count2 * 10;
if (count1*count2*count3 == 42 && count1 + count2 + count3 == 12)
{
printf("%d\n",i);
}
}
system("pause");
return 0;
}
页:
[1]