UVA 725 Division
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA 725 Division相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<string> #include<string.h> #include<math.h> #include<cstdio> using namespace std; int main(){ int n,ss=0; int hh[10]; bool flag=false,esca=false; while(cin>>n){ if(n==0) break; ss++; if(ss!=1)cout<<endl; flag=false; esca=false; int a,num,b,s; for(int i=10000;i<99999;i++){ esca=false; a=i;num=0; memset(hh,0,sizeof(hh)); while(a){ if(hh[a%10]==0){ hh[a%10]=1; a/=10; num++; }else break; } if(num==5&&i%n==0) { b=i/n; s=b; num=0; while(b){ if(hh[b%10]==0){ hh[b%10]=1; b/=10; num++; }else { esca=true; break; } } if(num==4&&hh[0]==0&&esca==false) {cout<<i<<" / 0"<<s<<" = "<<n<<endl;flag=true;} if(num==5) {cout<<i<<" / "<<s<<" = "<<n<<endl;flag=true;} } } if(flag==false) cout<<"There are no solutions for "<<n<<"."<<endl; } return 0; }
以上是关于UVA 725 Division的主要内容,如果未能解决你的问题,请参考以下文章