标签:
scanf函数:
(1)与printf函数一样,都被定义在头文件stdio.h里,因此在使用scanf函数时要加上#include <stdio.h>。它是格式输入函数,即按用户指定的格式从键盘上把数据输入到指定的变量之中。
(2)其调用形式为: scanf("<格式说明字符串>",<变量地址>);变量地址要求有效,并且与格式说明的次序一致。
(3)返回值
scanf
(
"%d %d"
,&a,&b);
|
|
标签:
原文地址:http://www.cnblogs.com/ssfzmfy/p/4254950.html