Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
39920 | yuhaoyu | 对齐输出 | C++ | Presentation Error | 0 MS | 252 KB | 246 | 2024-02-06 15:45:20 |
#include<iostream> //#include <iomanip> using namespace std; int main() { int a,b,c; //cin>>a>>b>>c; scanf("%d%d%d",&a,&b,&c); //cout<<setw(7)<<a<<" "<< setw(7)<<b<<" "<<setw(7)<<c<<endl; printf("%8d %8d %8d",a,b,c); return 0; }