直接輸入壹個字符串,程序會轉換輸出!
# include & ltstdio.h & gt
int main(void)
{
char ch
printf("請輸入字符串...\ n ");
while((ch=getchar())!='\n ')
putchar(ch+4);
}
不懂再問!