C语言程序设计B作业04
留作记录
#include <stdio.h>
int main(void)
{
char xx
, dx
;
printf("Input a lowercase letter: ");
scanf("%c", &xx
);
dx
= xx
- 32;
printf("\n%c(%d)\n%c(%d)\n", xx
, xx
, dx
, dx
);
return 0;
}
转载请注明原文地址: https://lol.8miu.com/read-30089.html