C庫函數(shù) int scanf(const char *format, ...) 讀取從標(biāo)準(zhǔn)輸入格式的輸入。
以下是聲明scanf()函數(shù)的功能。
int scanf(const char *format, ...)
format -- 這是C的字符串,其中包含以下各項中的一個或多個:
空白字符,非空白字符和格式說明。格式說明符如: [=%[*][width][modifiers]type=] 詳細說明如下:
參數(shù) | 描述 |
---|---|
* | 這是一個可選的星號表示該數(shù)據(jù)是從流中被讀取的,但忽略,即,它不會存儲在相應(yīng)的參數(shù)。 |
width | 這指定在當(dāng)前讀出操作被讀取的最大字符數(shù) |
modifiers | Specifies a size different from int (in the case of d, i and n), unsigned int (in the case of o, u and x) or float (in the case of e, f and g) for the data yiibaied by the corresponding additional argument: h : short int (for d, i and n), or unsigned short int (for o, u and x) l : long int (for d, i and n), or unsigned long int (for o, u and x), or double (for e, f and g) L : long double (for e, f and g) |
type | 的字符,指定將要讀取的數(shù)據(jù)的類型以及它是如何被讀取。請參閱下表。 |
fscanf類型說明:
類型 | 合格輸入 | 參數(shù)類型 |
---|---|---|
c | 單字符:讀取下一個字符。如果不同寬度從1被指定,函數(shù)讀取字符寬度,并將它們存儲在連續(xù)位置的數(shù)組作為參數(shù)傳遞。沒有空字符在末尾追加。 | char * |
d | 十進制整數(shù):號碼任意前面有+或 - 號 | int * |
e,E,f,g,G | 浮點十進制數(shù)的小數(shù)點,可選擇前面+或 - 號,可以選擇后跟e或E字符和一個十進制數(shù)。兩個有效條目的示例是-732.103和7.12e4 | float * |
o | 八進制整數(shù) | int * |
s | 一串字符。這將讀取后續(xù)字符,直到找到一個空格(空格字符被認為是空白,換行符和標(biāo)簽)。 | char * |
u | 無符號整數(shù)。 | unsigned int * |
x,X | 十六進制整數(shù) | int * |
additional arguments -- 根據(jù)格式字符串,函數(shù)可能會想到一系列的額外的參數(shù),每個包含一個值,而不是插入的格式參數(shù)中指定的標(biāo)記每個%標(biāo)簽,如果有的話。應(yīng)該有相同數(shù)量的%預(yù)期值的標(biāo)簽的數(shù)量的這些參數(shù)的。
如果成功,寫入的字符的總數(shù)被返回,否則返回一個負數(shù)。
下面的例子演示了如何使用 scanf() 函數(shù)功能。
#include <stdio.h> int main() { char str1[20], str2[30]; printf("Enter name: "); scanf("%s", &str1); printf("Enter your website name: "); scanf("%s", &str2); printf("Entered Name: %s ", str1); printf("Entered Website:%s", str2); return(0); }
讓我們編譯和運行上面的程序,這將在交互模式下產(chǎn)生以下結(jié)果:
Enter name: admin Enter your website name: www.yiibai.com Entered Name: admin Entered Website: www.yiibai.com