使用 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
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP