5 条题解

  • 3
    @ 2023-4-27 13:33:35
    #include <iostream>
    using namespace std;
    int main()
    {
    	int a , b, c;
    	cin >> a >> b >> c;
    	// cout << left << setw(8) << a ;
    	// cout <<right<< " "<< setw(8) << b << " "
    	// << setw(8) << c << endl;
    
    	printf("%8d %8d %8d\n",a,b,c);
    }
    
  • 0
    @ 2024-11-24 14:09:39
    #include <iostream>
    #include <iomanip>
    using namespace std;
    int main()
    {
    int a,b,c;
    cin >> a >> b >> c;
    cout << setw(8) << a << ' ';
    cout << setw(8) << b << ' ';
    cout << setw(8) <<c;
    return 0;
    }
    

    有标志认证,属三无产品,请各位放心食用

    • 0
      @ 2023-2-27 20:48:06
      #include <iostream>
      using namespace std;
      int main()
      {
      	int a , b, c;
      	cin >> a >> b >> c;
      	// cout << left << setw(8) << a ;
      	// cout <<right<< " "<< setw(8) << b << " "
      	// << setw(8) << c << endl;
      
      	printf("%8d %8d %8d\n",a,b,c);
      }
      
      • 0
        @ 2022-1-25 10:18:55
        #include <stdio.h>
        #include <iostream>
        #include <iomanip>
        using namespace std;
        int main()
        {
        	int a , b, c;
        	cin >> a >> b >> c;
        	// cout << left << setw(8) << a ;
        	// cout <<right<< " "<< setw(8) << b << " "
        	// << setw(8) << c << endl;
        
        	printf("%8d %8d %8d\n",a,b,c);
        }
        
        • -2
          @ 2022-9-25 15:27:22
          #include <stdio.h>
          #include <iostream>
          #include <iomanip>
          using namespace std;
          int main()
          {
          	int a , b, c;
          	cin >> a >> b >> c;
          	// cout << left << setw(8) << a ;
          	// cout <<right<< " "<< setw(8) << b << " "
          	// << setw(8) << c << endl;
          
          	printf("%8d %8d %8d\n",a,b,c);
          }
          
          
          • 1

          信息

          ID
          847
          时间
          1000ms
          内存
          128MiB
          难度
          6
          标签
          递交数
          1201
          已通过
          381
          上传者