【问题描述】
编程把能被11整除且不包含重复数字的3位数输出,并记录它们的个数。
【参考代码】
#include <stdio.h>
int main()
{
int i, ge, shi, bai;
for (i = 100; i < 1000; i++)
{
ge = i % 10; shi = (i / 10) % 10; bai = i / 100;
if (ge != bai && ge != shi && shi != bai)
{
if (i % 11 == 0) printf("%d ", i);
}
}
return 0;
}