有10个数字 0-9 能组成多少个不相同且无重复的三位数 c++
2个回答
推荐于2016-06-13
展开全部
#include<iostream>
#include<set>
using namespace std;
int main()
{
set<int> S;
for(int a = 0;a<10;a++)
for(int b = 0;b<10;b++)
for(int c = 0;c<10;c++)
S.insert(a*100+b*10+c);
cout<<S.size();
return 0;
}
#include<set>
using namespace std;
int main()
{
set<int> S;
for(int a = 0;a<10;a++)
for(int b = 0;b<10;b++)
for(int c = 0;c<10;c++)
S.insert(a*100+b*10+c);
cout<<S.size();
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询