码迷,mamicode.com
首页 > 其他好文 > 详细

VS 中输入带空格的两个字符串

时间:2020-02-25 23:10:43      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:lan   字符串   输入   scanf   htm   中间   bsp   bcd   html   

此博客链接:https://www.cnblogs.com/ping2yingshi/p/12364412.html

问题描述:vs中读取两个字符串,中间用空格分开。例如:abcde a3。

解决方法:

在变量后面添加定义的字符串数组长度。
例如:
while (~scanf_s("%s %s", huabutiao,1000, minshitiao,1000)){}。

写同样的一个程序,当输入带空格的字符串时,VS中需要多加一个参数。

DVV-C++ 和VS中输入带空格的字符串对比如下:

DVV-C++中:

while (scanf("%s%s", huabutiao, minshitiao)){}。

VS中:

while (~scanf_s("%s %s", huabutiao,1000, minshitiao,1000)){}。
    

 

VS 中输入带空格的两个字符串

标签:lan   字符串   输入   scanf   htm   中间   bsp   bcd   html   

原文地址:https://www.cnblogs.com/ping2yingshi/p/12364412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!