2 条题解

  • 0
    @ 2023-10-24 21:16:39

    #【c++】

    #include <iostream>
    #include <iomanip>
    using namespace std;
    int main(){
    cout.setf(ios::right); //设置输出右对齐
    int a,b,c;
    cin>>a>>b>>c;
    cout<<setw(8)<<a<<setw(8)<<b<<setw(8)<<c<<endl;//setw(8),使下一个输出按八字节对齐。
    return 0;
    }
    
    • 0
      @ 2023-10-24 21:14:34

      #【C代码】:

      #include <stdio.h>
      int main()
      {
      int a,b,c;
      scanf("%d%d%d",&a,&b,&c);
      printf("%8d %8d %8d\n",a,b,c);
      return 0;
      }
      

      #【pyhton代码】:

      a, b, c = map(int, input().split())
      print("%8d" % a, "%8d" % b, "%8d" % c)
      
      • 1

      信息

      ID
      578
      时间
      1000ms
      内存
      128MiB
      难度
      10
      标签
      (无)
      递交数
      3
      已通过
      2
      上传者