4 条题解

  • 1
    @ 2025-8-4 14:35:24
    using namespace std; 
    int a,b,c; 
    int main(){ 
    cin>>a>>b>>c; 
    cout<<setw(8)<<a<<" "; 
    cout<<setw(8)<<b<<" "; 
    cout<<setw(8)<<c<<" "; 
    return 0; 
    }
    
    
    • 1
      @ 2025-3-5 16:23:56

      #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; printf("%8d %8d %8d",a,b,c); return 0; }

      • 1
        #include<bits/stdc++.h>
        using namespace std;
        int a,b,c;
        int main(){
            cin>>a>>b>>c;
            cout<<setw(8)<<a<<" ";
            cout<<setw(8)<<b<<" ";
            cout<<setw(8)<<c<<" ";
            return 0;
        }
        

        制作不易,点个赞再拿走吧

        • 1
          @ 2025-2-28 16:32:01

          #include #include using namespace std; int a,b,c; int main() { cin>>a>>b>>c; cout<<setw(8)<<a<<" "<<setw(8)<<b<<" "<<setw(8)<<c<<endl; return 0; }

          • 1

          信息

          ID
          4
          时间
          1000ms
          内存
          256MiB
          难度
          1
          标签
          递交数
          606
          已通过
          101
          上传者