(第二次补充)
我第二次审查的时候发现,你的读入还是有一定的问题的,我把它改成如此:
#include
#include
#include
using namespace std;
int main()
{
ofstream output;
output.open("output.txt"); //新建一个output.txt
char a[50],b[50];
cout << "请输入一串您想储存到计算机上的字符,并以“#”号键结束:"<
b[strlen(b)-1] = '\0'; //strlen是一个函数,包含在
output << b;
cout<<"您所输入的字符串:“"< output.close(); //在前面我写的程序中,我没有注意到这一点,要关闭文件。关闭文件就用fstream对象函数表示,close()
}
从output.txt读入就需要用到我们C++的一个类ifstream。它专门用来从文件当中读入数据的。其用法为:ifstream in ( "xxx.txt" ); 这里in是一个标识符,可以是任何合法的名称,xxx.txt是文件名称。这样,我们就可以用这个对象去完成你的任务了。第二次审查后,我的程序简略了很多。
ifstream in("output.txt");
in >> a;
for ( int i = 0; i < strlen(a); i++ ) {
if ( a[i] >= 'a' && a[i] <= 'z' ) cout << static_cast
else cout << a[i];
}
由于在for循环当中已经逐字从文件读入转换并输出,这里并不需要做任何事情。整个文件如下:
//change_from_file.cpp
#include
#include
#include
using namespace std;
int main()
{
ofstream output;
output.open("output.txt");output.txt
char a[50],b[50];
cout << "请输入一串您想储存到计算机上的字符,并以“#”号键结束:"<
b[strlen(b)-1] = '\0';
output << b;
cout<<"您所输入的字符串:“"< output.close();
ifstream in("g:/output.txt");
in >> a;
for ( int i = 0; i < strlen(a); i++ ) {
if ( a[i] >= 'a' && a[i] <= 'z' ) cout << static_cast
else cout << a[i];
}
return 0;
}
另外,站长团上有产品团购,便宜有保证
如果你确定文件里只有30组数据,那么不需要if(ifile.eof()) break;
如果不能确定,应在Stu=add[i]; 之前,用if(ifile.eof()) break;判断
if(ifile.eof()!=0) break;
这不是直接退出循环了吗?
是不是改成 if(ifile.eof())break;