4 条题解

  • 3
    @ 2024-1-29 18:37:05
    #include<bits/stdc++.h>
    using namespace std;
    int a[100][100];int main(){
    int n;
    cin >> n;
    cout << n << endl;
    //so easy
    }
    
    • 3
      @ 2023-8-16 15:05:05

      #include <bits/stdc++.h> using namespace std; #define ll long long int main() { ll a; cin>>a; cout<<a<<endl; return 0; }

      • 3
        @ 2023-5-29 19:22:43

        输入什么,输出什么,而且还是整数,还范围如此之小

        1,2,3,上代码

        #include<bits/stdc++.h>
        using namespace std;
        int main(){
        	int n;//定义要输入的变量(整形)
        	cin>>n;//输入
        	cout<<n<<endl;//输出
        	return 0;
        }
        

        你学废了吗

        • 1
          @ 2023-5-25 18:01:44

          输入啥,输出啥。这么简单的题,只能用 Python 逝世了。

          print(input())
          
          • 1

          信息

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