问题标题: 酷町堂:4539 满足特点的数

0
0
已解决
董宇昊
董宇昊
初级启示者
初级启示者

为什么错了?

#include <iostream>
#include <cmath>
#include <string>
#include <cstdio>
using namespace std;
int main()
{
    for(int i=1000;i<=9999;i++){
		if((i+1)%15==0){
			if((i-3)%38==0){
				int sum=0,j=i;
				while(i){
                    sum=i%10+10*sum;
                    i=i/10;
                }
                if((sum+j)%10==0){
					cout<<j<<endl;
                }
			}
		}
    }
    return 0;
}

 

董宇昊在2020-05-05 18:39:58追加了内容

高子健,qq上聊


1
0
0
0
0
0
0
我要回答