中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++輸入字符串的方法有哪些

c++
小億
89
2024-03-21 09:25:43
欄目: 編程語言

在C++中,輸入字符串的方法有以下幾種:

  1. 使用cin:
#include <iostream>
#include <string>
using namespace std;

int main() {
    string str;
    cout << "Enter a string: ";
    cin >> str;
    cout << "You entered: " << str << endl;
    return 0;
}
  1. 使用getline:
#include <iostream>
#include <string>
using namespace std;

int main() {
    string str;
    cout << "Enter a string: ";
    getline(cin, str);
    cout << "You entered: " << str << endl;
    return 0;
}
  1. 使用scanf:
#include <cstdio>

int main() {
    char str[100];
    printf("Enter a string: ");
    scanf("%s", str);
    printf("You entered: %s\n", str);
    return 0;
}
  1. 使用fgets:
#include <cstdio>

int main() {
    char str[100];
    printf("Enter a string: ");
    fgets(str, 100, stdin);
    printf("You entered: %s\n", str);
    return 0;
}

0
广东省| 赤峰市| 沙田区| 上虞市| 句容市| 镇平县| 铁力市| 丁青县| 平阳县| 澳门| 瑞昌市| 南投市| 台湾省| 安乡县| 延边| 红桥区| 灵丘县| 福安市| 常山县| 松阳县| 泌阳县| 武夷山市| 汝阳县| 泰兴市| 兰坪| 五指山市| 铁力市| 荃湾区| 定日县| 汨罗市| 土默特右旗| 洪江市| 涞水县| 大英县| 长治市| 饶平县| 阳高县| 含山县| 贡嘎县| 邢台市| 舞钢市|