2 条题解

  • 1
    @ 2022-7-13 15:00:02

    #include <bits/stdc++.h>//万能头 using namespace std; int n; int main() { cin>>n;//输入 printf("%d",n/10%10+n%10+n/100);//个十百位之和 return 0;//养成好习惯 }

    • 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;
      }
      
      • 1

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

      信息

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