4 solutions

  • 2
    @ 2023-10-30 16:44:24
    #include <iostream>
    #include <cstdio>
    #include <iomanip>
    #include <cmath>
    using namespace std;
    int main(){
    	int a , b , c;
    	cin >> a >> b >> c;
    	printf("%8d %8d %8d" , a , b , c);
    	return 0;
    }
    
    • 2
      @ 2023-9-16 16:43:03
      #include <bits/stdc++.h>
      using namespace std;
      int main(){
      	int a,b,c;
      	cin >> a>>b>>c;
      	cout << setw(8) << right << a << setw(9) << right << b << setw(9) << right << c; 
      	return 0;
      }
      
      • 0
        @ 2023-11-24 21:27:18
        #include<iostream>
        #include<iomanip>
        using namespace std;
        int main(){
        	int a,b,c;
        	cin>>a>>b>>c;
        	cout<<setw(8)<<a<<" "<<setw(8)<<b<<" "<<setw(8)<<c;
        }
        
        • 0
          @ 2023-9-10 13:40:45
          #include <set>
          #include <ios>
          #include <list>
          #include <cmath>
          #include <ctime>
          #include <queue>
          #include <deque>
          #include <stack>
          #include <vector>
          #include <bitset>
          #include <cctype>
          #include <cerrno>
          #include <cwchar>
          #include <cstdio>
          #include <fenv.h>
          #include <iosfwd>
          #include <string>
          #include <limits>
          #include <math.h>
          #include <cstdlib>
          #include <iomanip>
          #include <clocale>
          #include <complex>
          #include <cstring>
          #include <cstring>
          #include <cwctype>
          #include <istream>
          #include <ostream>
          #include <sstream>
          #include <fstream>
          #include <utility>
          #include <stdio.h>
          #include <iostream>
          #include <stdint.h>
          #include <string.h>
          #include <tgmath.h>
          #include <complex.h>
          #include <algorithm>
          #include <exception>
          #include <stdbool.h>
          #include <stdexcept>
          #include <streambuf>
          #include <functional>
          #include <inttypes.h>
          #include <bits/stdc++.h>
          using namespace std;
          int main(){
          	int a,b,c;
          	cin >> a>>b>>c;
          	cout << setw(8) << right << a << setw(9) << right << b << setw(9) << right << c; 
          	return 0;
          }
          
          
          • 1

          Information

          ID
          564
          Time
          1000ms
          Memory
          256MiB
          Difficulty
          6
          Tags
          # Submissions
          191
          Accepted
          64
          Uploaded By