2 条题解

  • 0
    @ 2022-6-29 11:26:12
    #include<bits/stdc++.h> 
    using namespace std;
    int main(){
    	int m,s,d,f,g;
    	cin>>m;
    	s=m/100;
    	d=m%100/10;
    	f=m%100%10;
    	g=s+d+f;
    	cout<<g;
    	return 0;
    }
    

    【入门】求任意三位数各个数位上数字的和

    信息

    ID
    20
    时间
    1000ms
    内存
    16MiB
    难度
    1
    标签
    递交数
    134
    已通过
    102
    上传者