Garey


私信TA

用户名:yinqirui9

访问量:2737

签 名:

Stand alone complex

等  级
排  名 9488
经  验 1087
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 home
专  业

  自我简介:

大帅哥

解题思路:主要是注意控制流的先后顺序

注意事项:

参考代码:

#include <iostream>
#include <iomanip>
using namespace std;
int q,w,e;
int main(int argc, const char * argv[])
{
    // insert code here...    
    cin>>q>>w>>e;
    cout<<setiosflags(ios::left);
    cout<<setw(8)<<q;
    cout<<setw(8)<<w;
    cout<<setw(8)<<e;
    return 0;
}


 

0.0分

4 人评分

  评论区