隨筆 - 251  文章 - 504  trackbacks - 0
          <2010年11月>
          31123456
          78910111213
          14151617181920
          21222324252627
          2829301234
          567891011

          本博客系個人收集材料及學(xué)習(xí)記錄之用,各類“大俠”勿擾!

          留言簿(14)

          隨筆分類

          收藏夾

          My Favorite Web Sites

          名Bloger

          非著名Bloger

          搜索

          •  

          積分與排名

          • 積分 - 203428
          • 排名 - 283

          最新評論

           假如你的程序同時需要使用getchar()進(jìn)行字符輸入和使用 scanf()進(jìn)行數(shù)字輸入.這兩個函數(shù)的每一個都能很好的完成工作,
          但是它們不能很好地混合在一起.這是因為getchar()讀取每個字符,包括空格,制表符和換行符;而scanf()在讀取數(shù)字時候則
          會跳過空格,制表符和換行符.下面是個例子,
          char1.cpp
          /*C語言一個I/O問題程序*/
          #include<stdio.h>
          void display(char cr,int lines,int width);
          int main(void)
          {
          ? int ch;
          ? int rows,cols;
          ? printf("Enter a character and tow integers:\n");
          ? while((ch=getchar())!='\n')
          ? {
          ???? scanf("%d %d",&rows,&cols);
          ???? display(ch,rows,cols);

          ???? printf("Enter another character and tow 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');

          ? }
          }
          結(jié)果輸出:
          Enter a character and tow integers:
          d 3 2
          dd
          dd
          dd
          Enter another character and tow integers;
          Enter a newline to quit.
          Bye.
          Press any key to continue...

           可以看見緊跟在2后面的那個換行符,scanf()函數(shù)將該換行符留在了輸入隊列中.而getchar()并不跳過換行符,所以在循環(huán)的
          下一周期,在你有機(jī)會輸入其他內(nèi)容之前,這個換行符由getchar()讀出,然后將其賦值給ch,而ch為換行符正是終止循環(huán)的條件.

           要解決這個問題,必須跳過一個輸入周期中鍵入的最后一個數(shù)字與下一行開始處鍵入的字符之間的所有換行符或空格.
          改進(jìn)如下:char2.cpp

          /*C語言一個I/O問題程序修改版本*/
          #include<stdio.h>
          void display(char cr,int lines,int width);
          int main(void)
          {
          ? int ch;
          ? int rows,cols;
          ? printf("Enter a character and tow integers:\n");
          ? while((ch=getchar())!='\n')
          ? {
          ??? if( scanf("%d %d",&rows,&cols)!=2)
          ??? break;
          ???? display(ch,rows,cols);
          ???? while(getchar()!='\n')????? /*剔除掉scanf()輸入后的所有字符.*/
          ???? {

          ??????? printf("1");????????? /*后面有多少字符就輸出多少個1*/
          ??????? continue;

          ???? }
          ???? printf("Enter another character and tow 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');

          ? }
          }

          輸出結(jié)果:
          Enter a character and tow integers:
          d 3 4
          dddd
          dddd
          dddd
          Enter another character and tow integers;
          Enter a newline to quit.
          d 3 4
          dddd
          dddd
          dddd
          11Enter another character and tow integers;
          Enter a newline to quit.

          ?

          ?

          ?

          ?

          posted on 2006-11-03 14:12 matthew 閱讀(2596) 評論(1)  編輯  收藏 所屬分類: 數(shù)據(jù)結(jié)構(gòu)與算法設(shè)計

          FeedBack:
          # re: C語言的混合輸入數(shù)字和字符問題 2010-11-23 13:40 冰塵
          我覺得只要在調(diào)用函數(shù)后面加上 getchar(); 也可以解決。。  回復(fù)  更多評論
            
          主站蜘蛛池模板: 临猗县| 莎车县| 新晃| 彩票| 德钦县| 抚州市| 东台市| 固始县| 荃湾区| 九江市| 西城区| 锡林郭勒盟| 通州区| 克东县| 芦山县| 延长县| 河北区| 上饶市| 沂水县| 临漳县| 高邮市| 兴国县| 巴南区| 弥渡县| 沅陵县| 徐闻县| 双牌县| 新密市| 巩义市| 鄂尔多斯市| 寿阳县| 大同市| 永清县| 新化县| 柘城县| 游戏| 安福县| 丰原市| 翁源县| 图木舒克市| 无棣县|