1110: 求总分(左对齐输出)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:140
Solved:17
Description
输入小王同学语文、数学成绩,求他的总分,并按要求输出;
Input
语数成绩。
Output
小王的成绩单,每项内容占6个位置,左对齐。
Sample Input Copy
95 96
Sample Output Copy
姓名 语文 数学 总分
小王 95 96 191
HINT
cout<<left; 可以改变 cout<<setw(n)的对齐方向,直到出现 cout<<right;