首頁 > 後端開發 > C++ > 主體

編寫一個C程序,使用elseif語句將數字列印為單字

王林
發布: 2023-09-04 14:17:05
轉載
1198 人瀏覽過

編寫一個C程序,使用elseif語句將數字列印為單字

問題

在不使用 switch case 的情況下,如何使用 C 程式語言以文字形式列印給定的數字?

解決方案

在這個程式中,我們檢查三個條件以用單字列印兩位數-

  • if(no 99)

    • if(no99) p>

      輸入的數字不是兩位數

    • else if( no==0)

      將第一個數字印為零

    • else if(no>=10 && no

      用文字印個位數

    • else if(no>=20 && no

           if(no == 0)

      用文字列印兩位數

    程式

     現場示範

    #include<stdio.h>
    #include<string.h>
    int main(){
       int no;
       char *firstno[]={"zero","ten","eleven","twelve","thirteen", "fourteen","fifteen","sixteen","seventeen", "eighteen","nineteen"};
       char *secondno[]={"twenty","thirty","forty","fifty","sixty", "seventy","eighty","ninty"};
       char *thirdno[]={"one","two","three","four","five","six","seven","eight","nine"};
       printf("enter a number:");
       scanf("%d",&no);
       if(no<0 || no>99)
          printf("enter number is not a two digit number</p><p>");
       else if(no==0)
          printf("the enter no is:%s</p><p>",firstno[no]);
       else if(no>=10 && no<=19)
          printf("the enter no is:%s</p><p>",firstno[no-10+1]);
       else if(no>=20 && no<=90)
          if(no%10 == 0)
             printf("the enter no is:%s</p><p>",secondno[no/10 - 2]);
       else
          printf("the enter no is:%s %s</p><p>",secondno[no/10-2],thirdno[no%10-1]);
    return 0;
    }
    登入後複製

    輸出

    enter a number:79
    the enter no is: seventy nine
    enter a number:234
    enter number is not a two digit number
    登入後複製

以上是編寫一個C程序,使用elseif語句將數字列印為單字的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!