亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++流庫函數應用實例

發布時間:2024-09-10 12:35:37 來源:億速云 閱讀:85 作者:小樊 欄目:編程語言

C++ 流庫(iostream)是一個功能強大的輸入/輸出庫,它提供了格式化輸入/輸出功能,支持各種數據類型

  1. 從鍵盤讀取整數和字符串:
#include<iostream>
#include<string>

int main() {
    int age;
    std::string name;

    std::cout << "Enter your name: ";
    std::cin >> name;

    std::cout << "Enter your age: ";
    std::cin >> age;

    std::cout << "Hello, "<< name << "! You are "<< age << " years old."<< std::endl;

    return 0;
}
  1. 從文件讀取數據并計算平均值:
#include<iostream>
#include <fstream>
#include<vector>

int main() {
    std::ifstream input_file("data.txt");
    std::vector<double> numbers;
    double number;

    if (!input_file) {
        std::cerr << "Error opening file."<< std::endl;
        return 1;
    }

    while (input_file >> number) {
        numbers.push_back(number);
    }

    input_file.close();

    double sum = 0;
    for (const auto &num : numbers) {
        sum += num;
    }

    double average = sum / numbers.size();
    std::cout << "The average of the numbers in the file is: "<< average<< std::endl;

    return 0;
}
  1. 將數據寫入文件:
#include<iostream>
#include <fstream>

int main() {
    std::ofstream output_file("output.txt");

    if (!output_file) {
        std::cerr << "Error opening file."<< std::endl;
        return 1;
    }

    std::string text = "Hello, World!";
    output_file<< text<< std::endl;

    output_file.close();

    std::cout << "Text has been written to the file."<< std::endl;

    return 0;
}

這些實例展示了 C++ 流庫的基本用法。你可以根據需要修改和擴展這些代碼以滿足你的需求。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

明水县| 辽中县| 蕲春县| 潜山县| 五原县| 疏勒县| 合山市| 漠河县| 九寨沟县| 邻水| 长岭县| 杭锦旗| 江陵县| 马公市| 花莲县| 宿迁市| 西华县| 新野县| 仙桃市| 宜昌市| 淮北市| 舒城县| 黑河市| 时尚| 连南| 大渡口区| 南木林县| 永仁县| 大丰市| 武川县| 新津县| 龙门县| 襄垣县| 开远市| 信阳市| 台东县| 许昌县| 科技| 兴宁市| 沙河市| 滕州市|