代码;
/*
*Copyright (c) 2016, 烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:main.cpp;
*作 者:岳成艳;
*完成日期:2015年5月3号;
*版 本 号:vc++6.0;
*
*问题描述:猜数字;
*程序输入:无;
*程序输出:见运行测试;
*/
#include <iostream>
using namespace std;
int main()
{
int dou,yao,xue,c;
cout <<"都"<<"要"<<"学"<<"C"<<endl;
for(dou = 0; dou <= 9; ++dou)
{
for(yao = 0; yao <= 9; ++yao)
{
for(xue = 0; xue <= 9; ++xue)
{
for(c = 0; c <= 9; ++c)
{
if((dou*1000+yao*100+xue*10+c) + (yao*100+xue*10+c) + (xue*10+c) + c == 2008)
cout << dou <<" "<<yao<<" "<<xue<<" "<<c<<endl;
}
}
}
}
return 0;
}
运行测试;