1 条题解

  • 0
    @ 2023-10-21 14:36:25
    using namespace std;
    int main(){
    	int a,b,c,d;
    	for(int i=1000;i<=9999;i++){
    		a=i/1000;//求千位上的数 
    		b=i%1000/100;//求百位上的数 
    		c=i%100/10;//求十位上的数 
    		d=i%1000%100%10;//求个位上的数 
    		if(a+b+c+d==10) cout<<i<<endl;
    	}
    	return 0;
    }
    

    信息

    ID
    859
    时间
    1000ms
    内存
    16MiB
    难度
    9
    标签
    递交数
    9
    已通过
    7
    上传者