3 条题解

  • 1
    @ 2025-11-24 19:14:01
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int a,b,c;
        cin>>a>>b>>c;
        cout<<(a+b)*c;
        return 0;
    }
    
    • 1
      @ 2025-11-21 21:09:40

      还是函数(老传统)

      #define writen by Neo
      #include<bits/stdc++.h>
      using namespace std;
      int abc(int a,int b,int c){
          return (a+b)*c;
      }
      int main(){
          int a,b,c;
          cin>>a>>b>>c;
          cout<<abc(a,b,c);
          return 0;
          /*
          e~ 
          \(*\_/*)/
          */
      }
      

      (主包不知道怎么换名字,英文名叫\small (主包不知道怎么换名字,英文名叫Neo\large Neo,现在用中文名凑合一会儿 知道的私聊呗 ˜ )\small ,现在用中文名凑合一会儿\ 知道的私聊呗\~~~ )

      • 0
        @ 2025-11-15 11:28:40
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
        int a,b,c;cin>>a>>b>>c;
        cout<<(a+b)*c<<"\n";
        	return 0;
        } 
        
        • 1

        信息

        ID
        6811
        时间
        1000ms
        内存
        128MiB
        难度
        1
        标签
        递交数
        83
        已通过
        50
        上传者