第二周练习 猜数字

/*
 *copyright(c) 2014,烟台大学计算机学院
 *All rights reserved
 *文件名称:test.cpp
 *作者:谭泽纯
 *版本:v6.0
 *
 *问题描述:都要学C
 *输入描述:无
 *程序输出:输出组合
*/


#include<iostream>
using namespace std;
int main()
{
 int a,b,c,d;
 for(a=0;a<=9;a++)
   for(b=0;b<=9;b++)
     for(c=0;c<=9;c++)
       for(d=0;d<=9;d++)
       {
        int q=d;
        int w=c*10+q;
        int e=b*100+w;
        int r=a*1000+e;
            if(q+w+e+r==2008)
         {
          cout<<"都:"<<a<<endl;
          cout<<"要:"<<b<<endl;
          cout<<"学:"<<c<<endl;
          cout<<"C:"<<d<<endl;
         }
       }
}

 

你可能感兴趣的:(第二周练习 猜数字)