0

文字を取得し、大文字か小文字かを確認して印刷するプログラムを作成しようとしています。次に、ユーザーがメッセージを生成する「0」を入力するまでループを続けたいと思います。動作しないのは、下部のwhile条件であり、条件が満たされているようには見えません。

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int ch,nope;    // Int ch and nope variable used to terminate program
    do       // start 'do' loop to keep looping until terminate number is entered
    {
        printf("Enter a character : ");             // asks for user input as a character
        scanf("%c",&ch);                            // stores character entered in variable 'ch'
        if(ch>=97&&ch<=122) {                       // starts if statement using isupper (in built function to check case)
            printf("is lower case\n");
        } else {
            printf("is upper case\n");
        }
    }
    while(ch!=0);                                     // sets condition to break loop ... or in this case print message
    printf("im ending now \n\n\n\n\n",nope);     // shows that you get the terminate line

}
4

1 に答える 1

2

while(ch!=48);48は文字「0」の10進数であるため、試してみてください。Maroun Maroun が述べたように、while(ch!='0'); より分かりやすいです。

ユーザーが「0」を入力したときに大文字のメッセージが表示されないようにするには、次のようにします。

#include <stdio.h>
#include <stdlib.h>

int main()
{
    unsigned char ch,nope;    // Int ch and nope variable used to terminate program
    while (1)
    {
        printf("Enter a character : ");             // asks for user input as a character
        scanf("%c",&ch);                            // stores character entered in variable 'ch'
        if(ch==48) {
            break;
        }
        if(ch>=97&&ch<=122) {                      // starts if statement using isupper (in built function to check case)
            printf("is lower case\n");
        } else {
            printf("is upper case\n");
        }

    }
    printf("im ending now \n\n\n\n\n",nope);     // shows that you get the terminate line

}
于 2013-03-17T21:47:25.207 に答える