12 条题解

  • 1
    @ 2026-2-8 16:35:50

    #include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; cout<<x<<" "<<10*x; }

    • 1
      @ 2025-12-7 20:27:54

      刚做出一道特别难(对于我来说)的题,来一道简单的题放松一下。

      #include <bits/stdc++.h>
      using namespace std;
      int main(){
      	int n;
              cin>>n;
      	cout<<n<<' '<<n*10;
      	return 0;
      }
      
    • 0
      @ 2025-8-21 14:21:15

      GCC

      #include <stdio.h>
      int n;
      int main(){
          scanf("%d", &n);
          printf("%d %d\n", n, n * 10);
      }
      
      • 0
        @ 2025-8-9 15:54:41

        #include<bits/stdc++.h>

        using namespace std;

        int main(){

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

        }

        • 0
          @ 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
            @ 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;
            }
            //菜鸟驿站
            //老六专属
            
            
            • 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
                    @ 2023-3-26 16:41:11

                    image

                    • -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
                        标签
                        递交数
                        727
                        已通过
                        303
                        上传者