在C++中,輸入字符串并輸出其長度的方法可以使用cin
和cout
,以及strlen
函數。下面是一個示例代碼:
#include <iostream>
#include <cstring> // 包含 strlen 函數的頭文件
int main() {
char str[100]; // 定義一個字符數組來存儲輸入的字符串
std::cout << "請輸入一個字符串: ";
std::cin.getline(str, 100); // 使用getline函數接收輸入的字符串,并存儲在str數組中
int length = strlen(str); // 使用strlen函數獲取字符串的長度
std::cout << "輸入的字符串長度為: " << length << std::endl;
return 0;
}
在上述代碼中,首先定義了一個大小為100的字符數組str
來存儲輸入的字符串。然后使用std::cin.getline
函數接收用戶輸入的字符串,并將其存儲在str
數組中。接下來使用strlen
函數獲取str
數組中字符串的長度,并將結果賦值給length
變量。最后使用std::cout
輸出字符串的長度。