免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1622 | 回复: 8
打印 上一主题 下一主题

如何编写类似cat功能的程序? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-06-12 14:46 |只看该作者 |倒序浏览
1.该程序打开任意一个文本文件,并将它按原格式显示在屏幕上。
    2.该程序在unixware711下实现
    3.类似cat功能

请问该如何实现,谢谢!

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2003-06-12 14:47 |只看该作者

如何编写类似cat功能的程序?

这不会又是你的考试题吧。

有兴趣的帮忙。

论坛徽章:
0
3 [报告]
发表于 2003-06-12 16:29 |只看该作者

如何编写类似cat功能的程序?

各位,给点提示吗,非常感谢!

论坛徽章:
0
4 [报告]
发表于 2003-06-12 16:50 |只看该作者

如何编写类似cat功能的程序?

各位,给点提示吗,非常感谢!

论坛徽章:
0
5 [报告]
发表于 2003-06-12 17:10 |只看该作者

如何编写类似cat功能的程序?

各位,给点提示吗,非常感谢!

论坛徽章:
0
6 [报告]
发表于 2003-06-12 17:20 |只看该作者

如何编写类似cat功能的程序?

打开文件,输出到标准输出。

这也要提示吗?

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
7 [报告]
发表于 2003-06-12 17:47 |只看该作者

如何编写类似cat功能的程序?

(void)fprintf(stdout(stderr),fmt,...../args*/);

论坛徽章:
0
8 [报告]
发表于 2003-06-13 17:20 |只看该作者

如何编写类似cat功能的程序?

//vtype.cpp
#include <iostream>;
#include <fstream>;

using namespace std;

int main(int argc, char *argv[])
{
        if(argc >; 1)
        {
                char * pszfilename = argv[1];
                fstream fs(pszfilename, ios_base::in);
                if(fs.fail())
                {
                        //cerr<<"ERROR:Error opening argv[1]:No such file or directory!\n";
                        printf("ERROR:Error opening %s :No such file or directory!\n",argv[1]);
                        exit (0);       
                }
                char ch;
                while(fs.get(ch))
                {
                        cout<<ch;
                }
        }
        else
        {
        cout<<"lease input filename!"<<endl;
        }
}
//编译成vtype.exe, 键入vtype + 文件名

论坛徽章:
0
9 [报告]
发表于 2003-06-13 17:23 |只看该作者

如何编写类似cat功能的程序?

//vtype.cpp
#include <iostream>;
#include <fstream>;

using namespace std;

int main(int argc, char *argv[])
{
        if(argc >; 1)
        {
                char * pszfilename = argv[1];
                fstream fs(pszfilename, ios_base::in);
                if(fs.fail())
                {
                        //cerr<<"ERROR:Error opening argv[1]:No such file or directory!\n";
                        printf("ERROR:Error opening %s :No such file or directory!\n",argv[1]);
                        exit (0);       
                }
                char ch;
                while(fs.get(ch))
                {
                        cout<<ch;
                }
        }
        else
        {
        cout<<"lease input filename!"<<endl;
        }
}
//编译成vtype.exe, 键入vtype + 文件名
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP