8 条题解

  • 2
    @ 2025-2-10 13:51:13
    1. #include<bits/stdc++.h>
    using namespace std;
    #define LL long long
    const int N = 1e5 + 10;
    const int INF = 0x3f3f3f3f;
    int x;
    int main()
    {
        cin >> x;
        cout << x << " " << x * 10;
    	return 0;
    }
    //菜鸟驿站
    //老六专属
    
    
    • 1
      @ 2025-7-8 15:09:49

      #include

      #include

      #include

      using namespace std;

      int main()

      {

      int x;
      cin>>x;
      cout<<x<<" "<<x*10;
      return 0;
      

      }

      • 0
        @ 2023-3-26 16:41:11

        image

        • 0
          @ 2023-3-23 17:42:54
          using namespace std;
          int main(){
          	int x;
          	cin>>x;
          	cout<<x<<" "<<x*10;
          }
          
          
          • 0
            @ 2023-1-13 15:40:53
            #include<bits/stdc++.h>
            using namespace std;
            int main(){
            	int x;
            	cin>>x;
            	cout<<x<<" "<<x*10;
            }
            
            • 0
              @ 2022-12-4 16:30:01

              #include using namespace std; int main () { long long x; cin>>x; cout<<x<<" "<<10*x; return 0 ; }

              • -1
                @ 2022-10-4 19:32:11
                #include<cstdio>
                main()
                {
                	int n;
                	std::scanf("%d",&n);
                	std::printf("%d %d",n,n*10);
                }
                
                • -1
                  @ 2022-8-28 18:01:44
                  #include<iostream>
                  using namespace std;
                  int main()
                  {
                  	int x;
                  	cin>>x;
                  	long long ans=x*10;
                  	cout<<x<<" "<<ans;
                  	return 0;
                  }
                  
                  • 1

                  信息

                  ID
                  2720
                  时间
                  1000ms
                  内存
                  256MiB
                  难度
                  1
                  标签
                  递交数
                  670
                  已通过
                  273
                  上传者