(资料图片)
1、 scanf (c)int x, y;scanf("%d", &x); // read one integerscanf("%d %d", &x, &y); // read two integersscanf函数,与printf函数一样,都被定义在stdio.h里,因此在使用scanf函数时要加上#include。
2、它是格式输入函数,即按用户指定的格式从键盘上把数据输入到指定的变量之中,其关键字最末一个字母f即为“格式”(format)之意。
3、 scanf()函数是格式化输入函数,它从标准输入设备(键盘) 读取输入的信息。
4、 scanf("%d,%d", &a, &b);如果a和b都被成功读入,那么scanf的返回值就是2如果只有a被成功读入,返回值为1如果a和b都未被成功读入,返回值为0如果遇到错误或遇到end of file,返回值为EOF。
5、且返回值为int型.Basic functions scanf (c)int x, y;scanf("%d", &x); // read one integerscanf("%d %d", &x, &y); // read two integerscin (c++)cin >> x; // read one integercin >> x >> y; // read two integers。
本文就为大家分享到这里,希望小伙伴们会喜欢。
关键词: