C語言的輸入

2022-08-20 17:06:11 字數 597 閱讀 8631

pta有關字串輸入的問題老是記不清楚,在這裡記錄一下。

c語言中,strlen函式用於求字串的長度。

strlen從字元開頭算起,直到『\0』為止,返回計數器的值,數值不包括'\0'。

1 #include2 #include 

3using

namespace

std;45

6int

main();

8size_t len;

9gets(str);

10 len =strlen(str);

11 printf("

length: %d\n

", len);

12 printf("%s"

,str);

13return0;

1415 }

這是對一行輸入和檢驗空格能否輸入的實驗。

get函式能輸入包含空格的一行。

printf函式的%s也能輸出包含空格的一行。

實驗結果:

c語言 資料的輸入

任務 自然分割 include include int main else return 0 指定寬度輸入 include include int main 執 況 知識總結 用scanf函式輸入 在使用scanf語法是必須加 include 格式 scanf 格式描述串 變數位址 格式控制符 d,...

C語言的輸入格式

int main include意思是包含,包含乙個 standard input output 標準輸入與輸出 include 可理解成我要向計算機申請使用計算機的語言,即使用的格式 int是整型的意思 main前面的int表示main函式呼叫返回乙個整型值 return 0表示返回乙個0的值 此...

C語言輸入基礎

canf函式稱為格式輸入函式,即按使用者指定的格式從鍵盤上把資料輸入到指定的變數之中。scanf函式的一般形式 scanf函式是乙個標準庫函式,它的函式原型在標頭檔案 stdio.h 中。與printf函式相同,c語言也允許在使用scanf函式之前不必包含stdio.h檔案。scanf函式的一般形式...