码迷,mamicode.com
首页 > 其他好文 > 详细

模拟/枚举专题

时间:2020-01-19 11:05:39      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:cout   mes   info   int   fine   width   mic   name   模拟   

技术图片

 

 技术图片

 

 技术图片

 

 技术图片

 

 技术图片

 

 技术图片

 

 技术图片

 

 技术图片

 

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#define N 1000
#define M 1000
using namespace std;
int time[10];
void get(int x)
{
    time[x%10]++;
    time[x/10%10]++;
    time[x/100]++;
}
int main()
{
    for(int i=100;i<=333;i++)
    {
        int x=i,y=i*2,z=i*3;
        memset(time,0,sizeof(time));
        get(x);
        get(y);
        get(z);
        bool flag=true;
        for(int j=1;j<=9;j++) if(time[j]!=1) flag=false;
        if(flag)
        {
            cout<<x<< <<y<< <<z<<endl;
        }
    }
}

技术图片

 

 技术图片 

技术图片

 技术图片

 

 

 技术图片

技术图片

技术图片

 

 

 

 

 

 技术图片

模拟/枚举专题

标签:cout   mes   info   int   fine   width   mic   name   模拟   

原文地址:https://www.cnblogs.com/liusu123456/p/12212537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!