各位大神帮帮忙啊,有代码最好啊,没有代码有方法也很满意了!!@-@
16 个解决方案
#1
findfirst
findnext
findnext
#2
能说下具体的语句吗,还有把txt读出来后怎么显示其最大值,谢谢
#3
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult;
while(lResult != -1) {
cout << sFind.name << endl;
cout << sFind.size << endl;
_findnext(lResult, &sFind);
}
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
#4
能说下具体的语句吗,还有把txt读出来后怎么显示其最大值,谢谢
我编译结果是这样的,文件里是几个txt,txt里是多行数字,比如
1 2 3
4 5 6
7 8 9
这样的,txt求最大值我会,就是把程序串不起来
我编译结果是这样的,文件里是几个txt,txt里是多行数字,比如
1 2 3
4 5 6
7 8 9
这样的,txt求最大值我会,就是把程序串不起来
#5
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1) {
cout << "没有找到文件。" << endl;
return 0;
}
do{
cout << sFind.name << endl;
cout << sFind.size << endl;
cout << lResult << endl;
} while(_findnext(lResult, &sFind) != -1);
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
#6
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1) {
cout << "没有找到文件。" << endl;
return 0;
}
do{
cout << sFind.name << endl;
cout << sFind.size << endl;
cout << lResult << endl;
} while(_findnext(lResult, &sFind) != -1);
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
谢谢你!我刚才调试正确!
请问那怎么和这个txt的最大值连起来呢,这个txt的最大值用函数求出来了,比如我调用这个函数怎么调用。我问题比较多,大神谅解哈
#7
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1) {
cout << "没有找到文件。" << endl;
return 0;
}
do{
cout << sFind.name << endl;
cout << sFind.size << endl;
cout << lResult << endl;
} while(_findnext(lResult, &sFind) != -1);
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
谢谢你!我刚才调试正确!
请问那怎么和这个txt的最大值连起来呢,这个txt的最大值用函数求出来了,比如我调用这个函数怎么调用。我问题比较多,大神谅解哈
打开文件,用fscanf可以将文本文件里面每一个字符,转换成数值。
然后相加,计算。
你自己写,遇到什么问题,再来问就好。
这样最容易沟通。
#8
system("dir /b /a-d c:\\*.* >d:\\allfiles.txt");
//读文件d:\\allfiles.txt的内容即C:\\下所有文件的名字
system("dir /b /a-d /s c:\\*.* >d:\\allfilesinsub.txt");
//读文件d:\\allfilesinsub.txt的内容即C:\\下所有文件的名字包含子目录
system("dir /b /ad c:\\*.* >d:\\alldirs.txt");
//读文件d:\\alldirs.txt的内容即C:\\下所有子目录的名字
请记住,能用shell命令获取文件、文件夹信息或者操作文件、文件夹最好用shell命令获取或者操作,而不要用各种API获取或者操作,因为当遇到非法文件夹名或非法文件名或非法文件长度、非法文件日期、压缩文件、链接文件、稀疏文件……等各种意料之外的情况时,API会处理的不全面或陷入死循环,而shell命令不会。
如果嫌system黑窗口一闪,将system("...")替换为WinExec("cmd /c ...",SW_HIDE);
//读文件d:\\allfiles.txt的内容即C:\\下所有文件的名字
system("dir /b /a-d /s c:\\*.* >d:\\allfilesinsub.txt");
//读文件d:\\allfilesinsub.txt的内容即C:\\下所有文件的名字包含子目录
system("dir /b /ad c:\\*.* >d:\\alldirs.txt");
//读文件d:\\alldirs.txt的内容即C:\\下所有子目录的名字
请记住,能用shell命令获取文件、文件夹信息或者操作文件、文件夹最好用shell命令获取或者操作,而不要用各种API获取或者操作,因为当遇到非法文件夹名或非法文件名或非法文件长度、非法文件日期、压缩文件、链接文件、稀疏文件……等各种意料之外的情况时,API会处理的不全面或陷入死循环,而shell命令不会。
如果嫌system黑窗口一闪,将system("...")替换为WinExec("cmd /c ...",SW_HIDE);
#9
读txt的代码我会,cout<<sFind.name 然后在子函数里我要打开这个txt比如ifstream f(" ")里面要输入路径,这个路径是cout输出在显示器上的,那在子函数中的路径怎么填写呢
#10
仅供参考:
//将c:\\tmp文件夹下的所有文件的内容全部放到用malloc分配的内存中
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <io.h>
struct FB {
char fn[256];
size_t fl;
char *b;
struct FB *next;
struct FB *prev;
} *fh,*fb,*ft;
char ln[256];
char fpn[256];
FILE *af;
FILE *f;
int L,n;
int main() {
system("dir /b /a-d c:\\tmp\\*.* >c:\\allfn.txt");
af=fopen("c:\\allfn.txt","r");
if (NULL==af) {
printf("Can not open file c:\\allfn.txt!\n");
return 1;
}
fh=NULL;
fb=NULL;
n=0;
while (1) {
if (NULL==fgets(ln,256,af)) break;
L=strlen(ln);
if ('\n'==ln[L-1]) ln[L-1]=0;
printf("read %s\n",ln);
strcpy(fpn,"c:\\tmp\\");
strcat(fpn,ln);
ft=(struct FB *)malloc(sizeof(struct FB));
if (NULL==ft) {
printf("Can not malloc ft!\n");
fclose(af);
return 2;//之前的malloc在main退出后由操作系统自动free
}
printf("ft[%d]==%p\n",n,ft);
strcpy(ft->fn,fpn);
f=fopen(fpn,"rb");
if (NULL==f) {
printf("Can not open file %s!\n",fpn);
fclose(af);
return 3;//之前的malloc在main退出后由操作系统自动free
}
ft->fl=_filelength(fileno(f));
ft->b=malloc(ft->fl);
if (NULL==ft->b) {
printf("Can not malloc ft->b!\n");
fclose(f);
fclose(af);
return 4;//之前的malloc在main退出后由操作系统自动free
}
printf("ft[%d]->b==%p\n",n,ft->b);
if (ft->fl!=fread(ft->b,1,ft->fl,f)) {
printf("fread error!\n");
fclose(f);
fclose(af);
return 5;//之前的malloc在main退出后由操作系统自动free
}
fclose(f);
ft->next=NULL;
if (NULL==fh) {
ft->prev=NULL;
fh=ft;
} else {
fb->next=ft;
ft->prev=fb;
}
fb=ft;
n++;
}
fclose(af);
printf("-----list-----\n");
for (ft=fh;NULL!=ft;ft=ft->next) {
printf("%8d %s\n",ft->fl,ft->fn);
if (NULL!=ft) fb=ft;
}
printf("-----free-----\n");
n--;
if (NULL!=fh) {
for (ft=fb->prev;NULL!=ft;ft=ft->prev) {
if (NULL!=ft->next->b) {
printf("ft[%d]->b==%p\n",n,ft->next->b);
free(ft->next->b);
}
if (NULL!=ft->next) {
printf("ft[%d]==%p\n",n,ft->next);
free(ft->next);
}
n--;
}
if (NULL!=fh->b) {
printf("ft[0]->b==%p\n",fh->b);
free(fh->b);
}
printf("ft[0]==%p\n",fh);
free(fh);
}
return 0;
}
//C:\tmp\tmp\Debug>dir /a-d c:\tmp
// 驱动器 C 中的卷是 C_HD5_1
// 卷的序列号是 1817-D526
//
// c:\tmp 的目录
//
//找不到文件
//
//C:\tmp\tmp\Debug>tmp
//找不到文件
//-----list-----
//-----free-----
//
//C:\tmp\tmp\Debug>dir /a-d c:\tmp
// 驱动器 C 中的卷是 C_HD5_1
// 卷的序列号是 1817-D526
//
// c:\tmp 的目录
//
//2011-06-30 18:04 44,840 my_c.rar
//2011-06-30 17:18 1,036 err.frm
//2011-06-30 14:32 14,243 出租.txt
//2011-06-28 12:08 23,681 MSDN98书签.txt
// 4 个文件 83,800 字节
// 0 个目录 17,041,870,848 可用字节
//
//C:\tmp\tmp\Debug>tmp
//read my_c.rar
//ft[0]==00421800
//ft[0]->b==00520068
//read err.frm
//ft[1]==00421670
//ft[1]->b==0052AFC0
//read 出租.txt
//ft[2]==00421530
//ft[2]->b==00378F28
//read MSDN98书签.txt
//ft[3]==004213F0
//ft[3]->b==0052B3F8
//-----list-----
// 44840 c:\tmp\my_c.rar
// 1036 c:\tmp\err.frm
// 14243 c:\tmp\出租.txt
// 23681 c:\tmp\MSDN98书签.txt
//-----free-----
//ft[3]->b==0052B3F8
//ft[3]==004213F0
//ft[2]->b==00378F28
//ft[2]==00421530
//ft[1]->b==0052AFC0
//ft[1]==00421670
//ft[0]->b==00520068
//ft[0]==00421800
//
//C:\tmp\tmp\Debug>
#11
读txt的代码我会,cout<<sFind.name 然后在子函数里我要打开这个txt比如ifstream f(" ")里面要输入路径,这个路径是cout输出在显示器上的,那在子函数中的路径怎么填写呢
路径直接填写:sFind.name
就可以了。子函数里面的路径?通过参数传过去啊。
#12
我用string char 都试了不行,也用了指针还是一样的效果。你写一下行吗,传地址的这几句,我试了一早晨还是同样的效果
#13
我用string char 都试了不行,也用了指针还是一样的效果。你写一下行吗,传地址的这几句,我试了一早晨还是同样的效果
把你的代码片段放上来,看看你的思路。我给改一下。
#14
这是我的代码,主要是我写感叹号的地方错了
谢谢你啦
#include <io.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include<ctype.h>
using namespace std;
int Max();
int main()
{
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1)
{
cout << "没有找到文件。" << endl;
return 0;
}
int c;
do
{
cout << sFind.name << endl;
c=Max(); //调用子函数!!!
cout << sFind.size << endl;
cout << lResult << endl;
}
while(_findnext(lResult, &sFind) != -1);
getchar();
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
int Max()
{
inline void makeitem(vector<int>& item,istringstream
&in );
//int main()
//{
char *s= "sFind.name";
string line;
ifstream f("s"); //打开txt!!!
if(!f.is_open())
{
cout<<"error openfile"<<endl;return 1;
}
vector<int> item;
vector<vector<int> > arr;
int num=0;
while(!f.eof())
{
int num=0;
getline(f,line);
if(line.empty())continue;
istringstream input(line);
item.clear();
while(!input.eof())
{
input>>num;
item.push_back(num);
}
arr.push_back(item);
}
f.close();
//output arr
for (int i=0;i<arr.size();i++)
{
item=arr[i];
for (int j=0;j<item.size();j++)
{
cout<<item[j]<<" ";
}
cout<<endl;
}
int max[]={0};
for(int i=0;i<arr.size();i++)
{
for(int j=0;j<item.size();j++)
{
if(arr[i][j]>max[i])
{
max[i]=arr[i][j];
}
}
cout<<max[i]<<" ";
//cout<<endl;
}
int m=max[0];
for(int i=0;i<item.size();i++)
{
m=(m>max[i]?m:max[i]);
}
cout<<m;
return m;
getchar();
}
谢谢你啦
#include <io.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include<ctype.h>
using namespace std;
int Max();
int main()
{
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1)
{
cout << "没有找到文件。" << endl;
return 0;
}
int c;
do
{
cout << sFind.name << endl;
c=Max(); //调用子函数!!!
cout << sFind.size << endl;
cout << lResult << endl;
}
while(_findnext(lResult, &sFind) != -1);
getchar();
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
int Max()
{
inline void makeitem(vector<int>& item,istringstream
&in );
//int main()
//{
char *s= "sFind.name";
string line;
ifstream f("s"); //打开txt!!!
if(!f.is_open())
{
cout<<"error openfile"<<endl;return 1;
}
vector<int> item;
vector<vector<int> > arr;
int num=0;
while(!f.eof())
{
int num=0;
getline(f,line);
if(line.empty())continue;
istringstream input(line);
item.clear();
while(!input.eof())
{
input>>num;
item.push_back(num);
}
arr.push_back(item);
}
f.close();
//output arr
for (int i=0;i<arr.size();i++)
{
item=arr[i];
for (int j=0;j<item.size();j++)
{
cout<<item[j]<<" ";
}
cout<<endl;
}
int max[]={0};
for(int i=0;i<arr.size();i++)
{
for(int j=0;j<item.size();j++)
{
if(arr[i][j]>max[i])
{
max[i]=arr[i][j];
}
}
cout<<max[i]<<" ";
//cout<<endl;
}
int m=max[0];
for(int i=0;i<item.size();i++)
{
m=(m>max[i]?m:max[i]);
}
cout<<m;
return m;
getchar();
}
#15
max函数,要增加参数
调用的时候这样调用
max(sFind.name);
读取文件内容那段,可以用这样
int Max( char *pFileName)
{
inline void makeitem(vector<int>& item,istringstream
&in );
//int main()
//{
string line;
ifstream f(pFileName); //打开txt!!!
if(!f.is_open())
{
cout<<"error openfile"<<endl;return 1;
}
调用的时候这样调用
max(sFind.name);
读取文件内容那段,可以用这样
int iReader
while(1) {
f >> iReader
if(f.eof()) {
break;
}
cout << iReader << endl;
// 处理数值
}
直接读取内容
#16
非常感谢!很棒!
#1
findfirst
findnext
findnext
#2
能说下具体的语句吗,还有把txt读出来后怎么显示其最大值,谢谢
#3
能说下具体的语句吗,还有把txt读出来后怎么显示其最大值,谢谢
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult;
while(lResult != -1) {
cout << sFind.name << endl;
cout << sFind.size << endl;
_findnext(lResult, &sFind);
}
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
#4
能说下具体的语句吗,还有把txt读出来后怎么显示其最大值,谢谢
我编译结果是这样的,文件里是几个txt,txt里是多行数字,比如
1 2 3
4 5 6
7 8 9
这样的,txt求最大值我会,就是把程序串不起来
能说下具体的语句吗,还有把txt读出来后怎么显示其最大值,谢谢
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult;
while(lResult != -1) {
cout << sFind.name << endl;
cout << sFind.size << endl;
_findnext(lResult, &sFind);
}
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
我编译结果是这样的,文件里是几个txt,txt里是多行数字,比如
1 2 3
4 5 6
7 8 9
这样的,txt求最大值我会,就是把程序串不起来
#5
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1) {
cout << "没有找到文件。" << endl;
return 0;
}
do{
cout << sFind.name << endl;
cout << sFind.size << endl;
cout << lResult << endl;
} while(_findnext(lResult, &sFind) != -1);
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
#6
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1) {
cout << "没有找到文件。" << endl;
return 0;
}
do{
cout << sFind.name << endl;
cout << sFind.size << endl;
cout << lResult << endl;
} while(_findnext(lResult, &sFind) != -1);
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
谢谢你!我刚才调试正确!
请问那怎么和这个txt的最大值连起来呢,这个txt的最大值用函数求出来了,比如我调用这个函数怎么调用。我问题比较多,大神谅解哈
#7
#include <io.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main() {
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1) {
cout << "没有找到文件。" << endl;
return 0;
}
do{
cout << sFind.name << endl;
cout << sFind.size << endl;
cout << lResult << endl;
} while(_findnext(lResult, &sFind) != -1);
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
谢谢你!我刚才调试正确!
请问那怎么和这个txt的最大值连起来呢,这个txt的最大值用函数求出来了,比如我调用这个函数怎么调用。我问题比较多,大神谅解哈
打开文件,用fscanf可以将文本文件里面每一个字符,转换成数值。
然后相加,计算。
你自己写,遇到什么问题,再来问就好。
这样最容易沟通。
#8
system("dir /b /a-d c:\\*.* >d:\\allfiles.txt");
//读文件d:\\allfiles.txt的内容即C:\\下所有文件的名字
system("dir /b /a-d /s c:\\*.* >d:\\allfilesinsub.txt");
//读文件d:\\allfilesinsub.txt的内容即C:\\下所有文件的名字包含子目录
system("dir /b /ad c:\\*.* >d:\\alldirs.txt");
//读文件d:\\alldirs.txt的内容即C:\\下所有子目录的名字
请记住,能用shell命令获取文件、文件夹信息或者操作文件、文件夹最好用shell命令获取或者操作,而不要用各种API获取或者操作,因为当遇到非法文件夹名或非法文件名或非法文件长度、非法文件日期、压缩文件、链接文件、稀疏文件……等各种意料之外的情况时,API会处理的不全面或陷入死循环,而shell命令不会。
如果嫌system黑窗口一闪,将system("...")替换为WinExec("cmd /c ...",SW_HIDE);
//读文件d:\\allfiles.txt的内容即C:\\下所有文件的名字
system("dir /b /a-d /s c:\\*.* >d:\\allfilesinsub.txt");
//读文件d:\\allfilesinsub.txt的内容即C:\\下所有文件的名字包含子目录
system("dir /b /ad c:\\*.* >d:\\alldirs.txt");
//读文件d:\\alldirs.txt的内容即C:\\下所有子目录的名字
请记住,能用shell命令获取文件、文件夹信息或者操作文件、文件夹最好用shell命令获取或者操作,而不要用各种API获取或者操作,因为当遇到非法文件夹名或非法文件名或非法文件长度、非法文件日期、压缩文件、链接文件、稀疏文件……等各种意料之外的情况时,API会处理的不全面或陷入死循环,而shell命令不会。
如果嫌system黑窗口一闪,将system("...")替换为WinExec("cmd /c ...",SW_HIDE);
#9
读txt的代码我会,cout<<sFind.name 然后在子函数里我要打开这个txt比如ifstream f(" ")里面要输入路径,这个路径是cout输出在显示器上的,那在子函数中的路径怎么填写呢
#10
仅供参考:
//将c:\\tmp文件夹下的所有文件的内容全部放到用malloc分配的内存中
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <io.h>
struct FB {
char fn[256];
size_t fl;
char *b;
struct FB *next;
struct FB *prev;
} *fh,*fb,*ft;
char ln[256];
char fpn[256];
FILE *af;
FILE *f;
int L,n;
int main() {
system("dir /b /a-d c:\\tmp\\*.* >c:\\allfn.txt");
af=fopen("c:\\allfn.txt","r");
if (NULL==af) {
printf("Can not open file c:\\allfn.txt!\n");
return 1;
}
fh=NULL;
fb=NULL;
n=0;
while (1) {
if (NULL==fgets(ln,256,af)) break;
L=strlen(ln);
if ('\n'==ln[L-1]) ln[L-1]=0;
printf("read %s\n",ln);
strcpy(fpn,"c:\\tmp\\");
strcat(fpn,ln);
ft=(struct FB *)malloc(sizeof(struct FB));
if (NULL==ft) {
printf("Can not malloc ft!\n");
fclose(af);
return 2;//之前的malloc在main退出后由操作系统自动free
}
printf("ft[%d]==%p\n",n,ft);
strcpy(ft->fn,fpn);
f=fopen(fpn,"rb");
if (NULL==f) {
printf("Can not open file %s!\n",fpn);
fclose(af);
return 3;//之前的malloc在main退出后由操作系统自动free
}
ft->fl=_filelength(fileno(f));
ft->b=malloc(ft->fl);
if (NULL==ft->b) {
printf("Can not malloc ft->b!\n");
fclose(f);
fclose(af);
return 4;//之前的malloc在main退出后由操作系统自动free
}
printf("ft[%d]->b==%p\n",n,ft->b);
if (ft->fl!=fread(ft->b,1,ft->fl,f)) {
printf("fread error!\n");
fclose(f);
fclose(af);
return 5;//之前的malloc在main退出后由操作系统自动free
}
fclose(f);
ft->next=NULL;
if (NULL==fh) {
ft->prev=NULL;
fh=ft;
} else {
fb->next=ft;
ft->prev=fb;
}
fb=ft;
n++;
}
fclose(af);
printf("-----list-----\n");
for (ft=fh;NULL!=ft;ft=ft->next) {
printf("%8d %s\n",ft->fl,ft->fn);
if (NULL!=ft) fb=ft;
}
printf("-----free-----\n");
n--;
if (NULL!=fh) {
for (ft=fb->prev;NULL!=ft;ft=ft->prev) {
if (NULL!=ft->next->b) {
printf("ft[%d]->b==%p\n",n,ft->next->b);
free(ft->next->b);
}
if (NULL!=ft->next) {
printf("ft[%d]==%p\n",n,ft->next);
free(ft->next);
}
n--;
}
if (NULL!=fh->b) {
printf("ft[0]->b==%p\n",fh->b);
free(fh->b);
}
printf("ft[0]==%p\n",fh);
free(fh);
}
return 0;
}
//C:\tmp\tmp\Debug>dir /a-d c:\tmp
// 驱动器 C 中的卷是 C_HD5_1
// 卷的序列号是 1817-D526
//
// c:\tmp 的目录
//
//找不到文件
//
//C:\tmp\tmp\Debug>tmp
//找不到文件
//-----list-----
//-----free-----
//
//C:\tmp\tmp\Debug>dir /a-d c:\tmp
// 驱动器 C 中的卷是 C_HD5_1
// 卷的序列号是 1817-D526
//
// c:\tmp 的目录
//
//2011-06-30 18:04 44,840 my_c.rar
//2011-06-30 17:18 1,036 err.frm
//2011-06-30 14:32 14,243 出租.txt
//2011-06-28 12:08 23,681 MSDN98书签.txt
// 4 个文件 83,800 字节
// 0 个目录 17,041,870,848 可用字节
//
//C:\tmp\tmp\Debug>tmp
//read my_c.rar
//ft[0]==00421800
//ft[0]->b==00520068
//read err.frm
//ft[1]==00421670
//ft[1]->b==0052AFC0
//read 出租.txt
//ft[2]==00421530
//ft[2]->b==00378F28
//read MSDN98书签.txt
//ft[3]==004213F0
//ft[3]->b==0052B3F8
//-----list-----
// 44840 c:\tmp\my_c.rar
// 1036 c:\tmp\err.frm
// 14243 c:\tmp\出租.txt
// 23681 c:\tmp\MSDN98书签.txt
//-----free-----
//ft[3]->b==0052B3F8
//ft[3]==004213F0
//ft[2]->b==00378F28
//ft[2]==00421530
//ft[1]->b==0052AFC0
//ft[1]==00421670
//ft[0]->b==00520068
//ft[0]==00421800
//
//C:\tmp\tmp\Debug>
#11
读txt的代码我会,cout<<sFind.name 然后在子函数里我要打开这个txt比如ifstream f(" ")里面要输入路径,这个路径是cout输出在显示器上的,那在子函数中的路径怎么填写呢
路径直接填写:sFind.name
就可以了。子函数里面的路径?通过参数传过去啊。
#12
我用string char 都试了不行,也用了指针还是一样的效果。你写一下行吗,传地址的这几句,我试了一早晨还是同样的效果
#13
我用string char 都试了不行,也用了指针还是一样的效果。你写一下行吗,传地址的这几句,我试了一早晨还是同样的效果
把你的代码片段放上来,看看你的思路。我给改一下。
#14
这是我的代码,主要是我写感叹号的地方错了
谢谢你啦
#include <io.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include<ctype.h>
using namespace std;
int Max();
int main()
{
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1)
{
cout << "没有找到文件。" << endl;
return 0;
}
int c;
do
{
cout << sFind.name << endl;
c=Max(); //调用子函数!!!
cout << sFind.size << endl;
cout << lResult << endl;
}
while(_findnext(lResult, &sFind) != -1);
getchar();
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
int Max()
{
inline void makeitem(vector<int>& item,istringstream
&in );
//int main()
//{
char *s= "sFind.name";
string line;
ifstream f("s"); //打开txt!!!
if(!f.is_open())
{
cout<<"error openfile"<<endl;return 1;
}
vector<int> item;
vector<vector<int> > arr;
int num=0;
while(!f.eof())
{
int num=0;
getline(f,line);
if(line.empty())continue;
istringstream input(line);
item.clear();
while(!input.eof())
{
input>>num;
item.push_back(num);
}
arr.push_back(item);
}
f.close();
//output arr
for (int i=0;i<arr.size();i++)
{
item=arr[i];
for (int j=0;j<item.size();j++)
{
cout<<item[j]<<" ";
}
cout<<endl;
}
int max[]={0};
for(int i=0;i<arr.size();i++)
{
for(int j=0;j<item.size();j++)
{
if(arr[i][j]>max[i])
{
max[i]=arr[i][j];
}
}
cout<<max[i]<<" ";
//cout<<endl;
}
int m=max[0];
for(int i=0;i<item.size();i++)
{
m=(m>max[i]?m:max[i]);
}
cout<<m;
return m;
getchar();
}
谢谢你啦
#include <io.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include<ctype.h>
using namespace std;
int Max();
int main()
{
_finddata_t sFind;
long lResult = 0;
lResult = _findfirst("*.txt", &sFind);
if (lResult == -1)
{
cout << "没有找到文件。" << endl;
return 0;
}
int c;
do
{
cout << sFind.name << endl;
c=Max(); //调用子函数!!!
cout << sFind.size << endl;
cout << lResult << endl;
}
while(_findnext(lResult, &sFind) != -1);
getchar();
// 文件内容读取,得看内内容是什么样的了。
return 0;
}
int Max()
{
inline void makeitem(vector<int>& item,istringstream
&in );
//int main()
//{
char *s= "sFind.name";
string line;
ifstream f("s"); //打开txt!!!
if(!f.is_open())
{
cout<<"error openfile"<<endl;return 1;
}
vector<int> item;
vector<vector<int> > arr;
int num=0;
while(!f.eof())
{
int num=0;
getline(f,line);
if(line.empty())continue;
istringstream input(line);
item.clear();
while(!input.eof())
{
input>>num;
item.push_back(num);
}
arr.push_back(item);
}
f.close();
//output arr
for (int i=0;i<arr.size();i++)
{
item=arr[i];
for (int j=0;j<item.size();j++)
{
cout<<item[j]<<" ";
}
cout<<endl;
}
int max[]={0};
for(int i=0;i<arr.size();i++)
{
for(int j=0;j<item.size();j++)
{
if(arr[i][j]>max[i])
{
max[i]=arr[i][j];
}
}
cout<<max[i]<<" ";
//cout<<endl;
}
int m=max[0];
for(int i=0;i<item.size();i++)
{
m=(m>max[i]?m:max[i]);
}
cout<<m;
return m;
getchar();
}
#15
max函数,要增加参数
调用的时候这样调用
max(sFind.name);
读取文件内容那段,可以用这样
int Max( char *pFileName)
{
inline void makeitem(vector<int>& item,istringstream
&in );
//int main()
//{
string line;
ifstream f(pFileName); //打开txt!!!
if(!f.is_open())
{
cout<<"error openfile"<<endl;return 1;
}
调用的时候这样调用
max(sFind.name);
读取文件内容那段,可以用这样
int iReader
while(1) {
f >> iReader
if(f.eof()) {
break;
}
cout << iReader << endl;
// 处理数值
}
直接读取内容
#16
非常感谢!很棒!