问题标题: 酷町堂:合适的数

0
0
已解决
杨文轩
杨文轩
新手光能
新手光能

题目链接: 酷町堂:3973

  • #include<bits/stdc++.h>
  • using namespace std;
  • bool check(int x){
  • int t=x%10,a=(x/10000),cnt=0;
  • x*=a; while(x){
  • if(x%10!=t){
  • return false;
  • }
  • x/=10;
  • cnt++;
  • }
  • if(cnt<6){
  • return false;
  • }
  • }
  • int main(){
  • for(int i=10000;i<=99999;i++){
  • if(check(i)){
  • cout<<i<<" "; }
  • }
  • return 0;
  • }

0
0
吕忆航
吕忆航
高级光能
高级光能

你写的咋和我一样???

0
吕忆航
吕忆航
高级光能
高级光能

check函数最后面没有  return true

我要回答