2 条题解

  • 1
    @ 2025-10-8 9:11:19

    这题用了我3个函数,太恐怖了

    #include<bits/stdc++.h>
    using namespace std;
    int sum(int a,int b){
    	cin>>a>>b;
        return a+b;
    }
    int real(int a,int b){
    	int c;
    	c=sum(a,b);
    	return c;
    }
    int main(){
        int a,b;
        cout<<real(a,b);
        return 0;
    }
    

    代码语言:C++

    • 0
      @ 2025-10-7 15:59:31
      #include <iostream>
      #include <cstdio>
      #define 整形 int
      #define 主要的 main
      #define 第一个数 a
      #define 第二个数 b
      #define 输入 cin
      #define 输出 cout
      #define 换行 endl
      #define 返回 return
      #define 使用 using
      #define 名字空间 namespace
      #define 一种常用的名字空间 std 
      使用 名字空间 一种常用的名字空间;
      整形 主要的()
      {
      	整形 第一个数,第二个数;
      	输入 >> 第一个数 >> 第二个数;
      	输出 << 第一个数 + 第二个数 << 换行;
      	返回 0; 
      }
      
      • 1

      信息

      ID
      20441
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      (无)
      递交数
      121
      已通过
      83
      上传者