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

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

          留言簿(14)

          隨筆分類

          收藏夾

          My Favorite Web Sites

          名Bloger

          非著名Bloger

          搜索

          •  

          積分與排名

          • 積分 - 203429
          • 排名 - 283

          最新評論

           假如你的程序同時需要使用getchar()進行字符輸入和使用 scanf()進行數字輸入.這兩個函數的每一個都能很好的完成工作,
          但是它們不能很好地混合在一起.這是因為getchar()讀取每個字符,包括空格,制表符和換行符;而scanf()在讀取數字時候則
          會跳過空格,制表符和換行符.下面是個例子,
          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');

          ? }
          }
          結果輸出:
          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()函數將該換行符留在了輸入隊列中.而getchar()并不跳過換行符,所以在循環的
          下一周期,在你有機會輸入其他內容之前,這個換行符由getchar()讀出,然后將其賦值給ch,而ch為換行符正是終止循環的條件.

           要解決這個問題,必須跳過一個輸入周期中鍵入的最后一個數字與下一行開始處鍵入的字符之間的所有換行符或空格.
          改進如下: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');

          ? }
          }

          輸出結果:
          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)  編輯  收藏 所屬分類: 數據結構與算法設計

          FeedBack:
          # re: C語言的混合輸入數字和字符問題 2010-11-23 13:40 冰塵
          我覺得只要在調用函數后面加上 getchar(); 也可以解決。。  回復  更多評論
            
          主站蜘蛛池模板: 宁津县| 大悟县| 南投市| 德化县| 怀集县| 濉溪县| 宾川县| 无棣县| 盐津县| 望谟县| 盐城市| 雷波县| 收藏| 呼和浩特市| 临洮县| 永吉县| 平顶山市| 沾益县| 东丰县| 北宁市| 商水县| 周口市| 洞口县| 郓城县| 建德市| 芦溪县| 全椒县| 林西县| 突泉县| 林周县| 洪泽县| 谢通门县| 夏邑县| 敦煌市| 都江堰市| 常州市| 吴忠市| 松溪县| 曲松县| 教育| 静乐县|