使用 C++ ifstream 从文本文件中读取整数


以下是一个使用 C++ ifstream 从文本文件中读取整数的示例。

示例

#include <fstream>
#include<iostream>
using namespace std;
int main() {
   //initialie the array size
   int arr[30];
   ifstream is("a.txt");
   int cnt= 0;
   int x;
   // check that array is not already full
   while (cnt < arr[30] && is >> x)
   // and read integer from file
   arr[cnt++] = x;
   // print the integers stored in the array
   cout<<"The integers are:"<<"\n";
   for (int i = 0; i < cnt; i++) {
      cout << arr[i] <<' ';
   }
   //close the file
   is.close();
}

输出

The integers are:
1 2 3 4 5 6 7

更新时间:2019 年 7 月 30 日

6K+ 次浏览

开启您的 职业

完成课程并获得认证

开始
广告