标签:scanf 文件输入 返回 image 无法 href border code nbsp
int
scanf
(
const
char
* restrict format,...);
int year,month,day; scanf("%d-%d-%d",&year,&month,&day) ; cout<<year<<" "<<month<<" "<<day<<endl; //输入 2020-1-10 输出 2020 1 10
int income; scanf("%*[^0-9]%d",&income); cout<<income; // 输入 : Today‘s revenue is 3000 输出 : 3000 // %*[0-9]过滤了前面的非数字
char v1[100],v2[100]; scanf("%[^\n]%*c%[^\n]",v1,v2); cout<<v1<<" "<<v2<<endl; //输入 : china // USA
//输出; china USA
//%[^\n] 可以读入一行,后面的%*c是为了过滤掉换行符
标签:scanf 文件输入 返回 image 无法 href border code nbsp
原文地址:https://www.cnblogs.com/cyj1258/p/12178466.html