标签:print ios pre span scanf system 使用 令行 image
#include<stdio.h> #include<iostream> int main() { char* str[10]; printf("请输入:\n"); scanf("%s\n", str); printf("您的输入是:%s\n",str); system("pause"); return 0; }
如果在scanf中使用换行符,那么会在命令行进行输入时要输入两次。
原因:在scanf中随意使用\n,表示忽略一切空白符直至下一个非空白符出现。
标签:print ios pre span scanf system 使用 令行 image
原文地址:https://www.cnblogs.com/xiximayou/p/12128937.html