| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 320 人关注过本帖
标题:在调用函数遇到的问题
取消只看楼主 加入收藏
丹85丹
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2009-10-4
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:0 
在调用函数遇到的问题
    在调用函数in_read的时候出现了问题,调试的时候发现程序执行到这个函数处就不执行了,in_write是向文件内写一个3*3矩阵和一个3*1的矩阵。in_read是读出这两个矩阵的行数和列数。把in_read单独执行下发现好使,真是不知道怎么回事了,麻烦大家解下疑惑。
#include"stdio.h"
#include"stdlib.h"
#include"iostream.h"
#include"conio.h"

FILE *fp;
int **p1,**p2;
void in_write(FILE *fp);
int in_read(int h,int l,char w);

int main()
{
    int ah=0,al=0,yh=0,yl=0;
    char q;
    fp=fopen("in_r.txt","w+");                /*write numbers to file in_r*/
    printf("Please input the numbers.\n");
    in_write(fp);

    rewind(fp);
    puts("The end to write.\n");

    q='A';
    printf("%c",q);
    in_read(ah,al,q);                           /*read the matrix A*/

    q='Y';
    printf("%c",q);
    in_read(yh,yl,q);                           /*read vector Y*/
   
    return(0);
}

void in_write(FILE *fp)                       /*The function to write numbers*/
{
    int i,j,m=0;
    if(fp==NULL)
    {
        printf("open in_r error.\n");
        exit(0);
    }
    else
    {
        printf("Now input the matrix a.\n");
        for(i=1;i<=3;i++)
        {
            for(j=1;j<=3;j++)
            {
                scanf("%d ",&m);
                fprintf(fp,"%d ",m);
            }
            fputc('\n',fp);
        }
        fflush(stdin);
        printf("Then input vector Y\n");
        fputc('\n',fp);
        for(i=1;i<=3;i++)
        {
            scanf("%d ",&m);
            fprintf(fp,"%d ",m);
            fputc('\n',fp);
        }
    }
}

int in_read(int h,int l,char w)                           /*read the matrix*/                             
{
    int m,d=0,flag=0,c=0,A=0;
    h=0;
    l=0;
    char c1,c2;
    for(;flag==0;)
    {
        fscanf(fp,"%d",&m);
        fscanf(fp,"%c",&c1);
        c++;
        if(c1=='\n')
        {
            l=c;
            h++;
            if((h>1)&&c!=d)
            {
                A=1;
                break;
            }
            fscanf(fp,"%c",&c2);
            d=c;
            c=0;
            if(c2=='\n')
                flag=1;
            else
                fseek(fp,-1l,1);
        }
    }
    printf("In %c ah=%d,al=%d\n",w,h,l);
    return(0);

}















搜索更多相关主题的帖子: 函数 
2009-10-07 23:13
快速回复:在调用函数遇到的问题
数据加载中...
 
   



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

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