一种写法:
/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
int main()
{
char c;
printf("Enter character: ");
c = getchar();
if (c >= 'A' && c <= 'Z') {
while (c<'Z')
printf("%c", ++c);
}
if (c >= 'a' && c <= 'z') {
while (c<'z')
printf("%c", ++c);
}
return 0;
}