任何人都知道這個問題?它只檢測第一個字符。我不知道這個問題,請幫忙。我找不到答案。多個if語句C 446
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <math.h>
int main()
{
int password;
printf("Enter your password. \n");
printf("Password must contain an uppercase letter, a lowercase letter, and a number. \n");
scanf("%c", &password);
if(isupper(password)){
printf("Password meets requirement 1. \n");
}
if(islower(password)){
printf("Password meets requirement 2. \n");
}
if(isdigit(password)){
printf("Password meets requirement 3. \n");
}
return 0;
}
引擎收錄在這裏:http://pastebin.com/ZdDHgpx8 – pushcode
'isupper','islower'和'isdigit'對單個字符,而不是字符串操作。 – keithmo
您正在將單個字符讀入一個應該是密碼的int變量。這不是你如何使用scanf,整數變量或密碼。 – Magisch