cin是c++标准,scanf是在c中使用的ios
#include
#include
#include
using namespace std;
int main()
{
/*
strlen包含在string.h头文件里,加上
#include
#include // C语言头文件为 string.h 新c++编译器 ,前面加c ,后去掉 .h
输入char[]
*/
char s[100100];
cin>>s;
//strlen和sizeof的区别
int len = strlen(s);
int size = sizeof(s); //100100
cout<
//连续输入多个变量
double z,g;
int h;
cin>>z>>g>>h;
cout<
//输入string
string str;
cin>>str;
int len1 = str.length();
int size1 = str.size();
cout<
/*
printf,scanf两个函数都包含在库文件中。
连续输入多个变量
*/
double x,y;
int w;
scanf("%lf%lf%d",&x,&y,&w);
printf("%lf %lf %d",x,y,w);
return 0;
}
纯文本代码:c++
#include
#include
#include
using namespacestd;
intmain()
{
/*strlen包含在string.h头文件里,加上#include #include // C语言头文件为string.h新c++编译器 ,前面加c,后去掉.h输入char[]*/chars[100100];
cin>>s;
//strlen和sizeof的区别intlen = strlen(s);
intsize = sizeof(s); //100100cout<
//连续输入多个变量doublez,g;
inth;
cin>>z>>g>>h;
cout<
//输入stringstring str;
cin>>str;
intlen1 = str.length();
intsize1 = str.size();
cout<
/*printf,scanf两个函数都包含在库文件中。连续输入多个变量*/doublex,y;
intw;
scanf("%lf%lf%d",&x,&y,&w);
printf("%lf %lf %d",x,y,w);
return0;
}