if (scanf("%li %li", &x, &y) != 2 ) 请问这个条件应该怎么理解?

2013-09-01 15:59:58 +08:00
 Hansee
3391 次点击
所在节点    问与答
7 条回复
windywinter
2013-09-01 16:02:39 +08:00
On success, the function returns the number of items of the argument list successfully filled. This count can match the expected number of items or be less (even zero) due to a matching failure, a reading error, or the reach of the end-of-file.
Hansee
2013-09-01 16:13:02 +08:00
@windywinter 还是不太明白。其实是希望检验x,y的输入只为数字,且y不为0的判断。在sf上提问后,有人给出了这样的条件。现在输入非数字可以成功判断到,但是y为0还是无法判断。
nybux
2013-09-01 16:28:48 +08:00
判断是不是读取到了2个变量,!=2没读去到,估计在if里面要有额外的错误处理
Hansee
2013-09-01 16:37:16 +08:00
@nybux 并且这两个变量会需要符合x和y声明时的类型么?因为现在输入字幕就会进入这个if语句,数字的话就会跳过。
rteta
2013-09-01 16:45:43 +08:00
新手认为是,成功读入两个符合指定数据类型的数 则执行if后面的语句 C语言从来就没学会过,坐等高手指点
Hansee
2013-09-01 17:20:24 +08:00
@rteta 我现在也是这么理解的
wang2191195
2013-09-01 17:20:31 +08:00
if (scanf("%li %li", &x, &y) != 2 && y != 0 )
嘿嘿
@Hansee

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/80961

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX