ホームページ  >  記事  >  バックエンド開発  >  elseif ステートメントを使用して数値を単語として出力する C プログラムを作成します。

elseif ステートメントを使用して数値を単語として出力する C プログラムを作成します。

王林
王林転載
2023-09-04 14:17:051203ブラウズ

elseif ステートメントを使用して数値を単語として出力する C プログラムを作成します。

質問

C プログラミング言語を使用して、switch case を使用せずに指定された数値をリテラル形式で出力するにはどうすればよいですか?

解決策

このプログラムでは、ワードで 2 桁を出力するために 3 つの条件をチェックします。

  • if(no 99)

    • if(no99) p>

      入力された番号は 2 桁の数字ではありません

    • else if( no= =0)

      最初の数値をゼロとして出力します

    • else if(no>=10 && no

      に 1 桁の数字を出力しますtext

    • else if(no>=20 && no

      if(no == 0)

      テキスト付きの 2 桁を出力

    プログラム

    ライブデモンストレーション

    #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

以上がelseif ステートメントを使用して数値を単語として出力する C プログラムを作成します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。