1001 A+B Format (20分)

输出格式

#include<iostream>
#include<iomanip>
cout << setfill('0'); 
cout << rst/1000 << ',' << setw(3) << rst%1000;

or

#include<cstdio>
printf("%d,%03d", rst/1000, rst%1000);

👉 code

posted @ 2020-07-29 22:42  Blind  阅读(83)  评论(0编辑  收藏  举报