陌雨 发表于 2016-1-6 21:08:44

代码中 14 15行对调为什么不能正确运行?

本帖最后由 陌雨 于 2016-1-6 21:27 编辑

/*代码作用:输入一个字符,行数 和列数, 然后按输入的行数和 列数显示出输入的字符   */
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<windows.h>
void display(char c,int a, int b);
intmain(void)
{
        int h,l;//h 行    l列;
        char ch;//字符;
        while((ch=getchar())!='\n')
        {
                if(scanf("%d %d",&h,&l)!=2)
                        break;
                display(ch,h,l);
                while(ch!='\n')
                continue;
        }
        system("pause");
return 0;
}
void display(char c,int a,int b)
{
        int g,e;
        for(g=1;g<=a;g++)
                {
                        for(e=1;e<=b;e++)
                             putchar(c);
      printf("\n");
          }
}
页: [1]
查看完整版本: 代码中 14 15行对调为什么不能正确运行?