编程学习网为您整理以下代码实例,主要实现:读入姓氏,并检查用户名是否以P和Q之间的字母开头,希望可以帮到各位朋友。
#include <stdio.h>
int main()
{
char name[25];
printf("What is your last name? ");
printf("(Please cAPItalize the first letter!)\n");
scanf(" %s", name);
if ((name[0] >= 'P') && (name[0] <= 'S'))
{
printf("between p and q");
}
else
{
printf("not.\n");
}
return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!