自考新教材-p286
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p286相关的知识,希望对你有一定的参考价值。
源程序:
//
// main.cpp
// p286
//
// Created by duanqibo on 2020/1/27.
// Copyright © 2020年 duanqibo. All rights reserved.
//
//程序7-7
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
string s1,s2;
cin>>setw(5)>>s1>>setw(3)>>s2; //设置输入的字符串格式(长度)
cout<<"s1="<<s1<<", s2="<<s2<<endl;
return 0;
}
运行结果:
以上是关于自考新教材-p286的主要内容,如果未能解决你的问题,请参考以下文章