| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 588 人关注过本帖
标题:程序编译连接无误,但运行错误?
取消只看楼主 加入收藏
yqiong
Rank: 1
等 级:新手上路
帖 子:315
专家分:0
注 册:2007-7-4
结帖率:83.33%
收藏
 问题点数:0 回复次数:1 
程序编译连接无误,但运行错误?
#include <iostream>
#include <stdio.h>
#include <fstream>
#include <string>
using namespace std;
char xx[50][80];
int maxline;
void readdat();
void writedat();
void strcharjl();


void strcharjl()
{
    int i,j,strl;
    for(i=0;i<maxline;i++)
    {
        strl=strlen(xx[i]);
        for(j=0;j<strl;j++)
            if((xx[i][j]<<4)<=32||(xx[i][j]<<4)>100);
            else xx[i][j]+=xx[i][j]<<4;
    }
}



void writedat()
{
    FILE *fp;
    int i=0;
    if((fp=fopen("out.txt","w"))==NULL)
    {
        printf("can't open the file");
        exit(1);
    }
    for(i=0;i<maxline;i++)
    {
        printf("%s\n",xx[i]);
        fprintf(fp,"%s\n",xx[i]);
    }
        fclose(fp);

}
    


void readdat()
{
    FILE *fp;
    char *p;
    int i=0;
    if((fp=fopen("in.txt","r"))==NULL)
    {
        printf("can't open the file");
        exit(1);
    }
    while((fgets(xx[i],80,'\0'))!=NULL)
    {
        if(p=strchr(xx[i],'\n'))
            *p='\0';
        i++;
    }
    maxline=i;
    fclose(fp);
}



void main()
{
 readdat();
strcharjl();
 writedat();
 }
搜索更多相关主题的帖子: void include int 
2008-03-31 17:14
yqiong
Rank: 1
等 级:新手上路
帖 子:315
专家分:0
注 册:2007-7-4
收藏
得分:0 
应该没得这种可能性,我的文件长度不到十行呢^_^
2008-03-31 22:23
快速回复:程序编译连接无误,但运行错误?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.055823 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved