Я бы хотел, чтобы пользователь написал букву для выбора, проблема в том, что он определяет только строчные буквы, а не прописные, не могли бы вы мне помочь?
#include <stdio.h>
#include <ctype.h>
int main ()
{
char choice;
printf("Will you choose A, or B?\n>");
do {
scanf(" %c", &choice);
} while (choice != 'a' && 'A' && choice != 'b' && 'B');
switch (choice) {
case 'A':
case 'a':
printf("The First Letter of the Alphabet\n");
break;
case 'B':
case 'b':
printf("The Second Letter of the Alphabet\n");
break;
}
system("pause");
return 0;
}