标题:《c primer plus》中混合输入数字和字符的问题
取消只看楼主
wqx12343
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-1-14
 问题点数:0 回复次数:0 
《c primer plus》中混合输入数字和字符的问题
《c primer plus》p198页混合输入数字和字符例8.5,原来程序是这样的:
#include <stdio.h>
void display (char cr,int lines,int width);
int main(void)
{
    int ch;
    int rows,cols;
    printf("Enter a character and two integers:\n");
    while((ch=getchar())!='\n'){
        scanf("%d %d",&rows,&cols);
        display(ch,rows,cols);
        printf("Enter another character and two integers:\n");
        printf("Enter a newline to quit.\n");
    }
    printf("Bye.\n");

    return 0;
}
void display(char cr,int lines,int width)
{
    int row,col;
    for(row=1;row<=lines;row++){
        for(col=1;col<=width;col++)
            putchar(cr);
        putchar('\n');
    }
}
我把while语句中的条件改为:while((ch=getchar())!='#'),第二次输出为什么中间空了几行?

搜索更多相关主题的帖子: void character another display include 
2012-04-09 14:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-365432-1-1.html




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

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