## 输入带空格的字符串 ~~~ c++ 1. #include <string.h> string s; getline(cin,s); 2. #include <cstring> #include <stdio.h> char a[1024]; gets(a); int len = strlen(a);//得到数组的实际长度 ~~~ ## 填充输入 ~~~java setw(int n)//用来控制输出间隔 //例:cout<<'s'<<setw(3)<<'a'<<endl; setfill(char c)//用来填充输出 //例:cout<<setfill('*')<<setw(3)<<'a'<<endl; //输出为:**a ~~~
标签:cout,##,int,2023.7,include,输入 From: https://www.cnblogs.com/muzhaodi/p/17523528.html