C語言中如何輸入字符型變量進行判斷?
#include <stdio.h>
#include <string.h>
int main()
{
char str[200];
while(1)
{
printf("請輸入: "); //輸出提示信息
scanf("%s", &str); //等待從鍵盤讀入一個字符串到變量str里
//使用c庫里的strcmp判斷輸入的字符串,strcmp返回0時表示相同
//,如要忽略大小寫使用strcmpi函數
if( strcmp(str, "sapphire")==0
strcmp(str, "josiah")==0 )
printf( "hello, %s\n", str );
else
printf( "Sorry,you are not……\n" );
}
}