从txt文件中读入数据

目录

 

1. 使用文件流从txt文本中读数据到矩阵中

2. 使用文件流从txt文本中读入一行数据到c[10]

3. 待学习链接


1. 使用文件流从txt文本中读数据到矩阵中

#include 
#include 
using namespace std;
 
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
char arr[10][10]; 
int main(int argc, char** argv) {
	//使用文件流从txt文本中读入数据到矩阵arr[10][10]
	ifstream f1("input.txt");//打开文件 
	if(f1)
	{
		for(int i = 0; i < 10; i++)//行循环 
			for(int j = 0; j < 10; j++)//列循环 
				f1>>arr[i][j];//读入一个值(空格、制表符、换行隔开) 
	}
	f1.close();//关闭文件 
	//show矩阵arr[10][10] 
	for(int i = 0; i < 10; i++)
	{
		for(int j = 0; j < 10; j++)
		{
			cout<

 从txt文件中读入数据_第1张图片

2. 使用文件流从txt文本中读入一行数据到c[10]

#include 
#include 
using namespace std;
 
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
char c[10]; 
int main(int argc, char** argv) {
	//使用文件流从txt文本中读入一行数据到c[10]
	ifstream f1("input.txt");//打开文件 
	if(f1)
	{
		while(f1.good())
		{
			f1.getline(c,10);
			cout<

 从txt文件中读入数据_第2张图片

3. 待学习链接

https://blog.csdn.net/qq_22080999/article/details/82532157

你可能感兴趣的:(C++,Dev_C++)