下面程序运行时从键盘上输入:AabD↙,写出程序的运行结果。#include <stdio.h>int main(){ char s[80]; int i=0; gets(s); while (s[i]!='\0') { if (s[i]<='z' && s[i]>='a') s[i]='z'+'a'-s[i] ; i++; } puts(s); return 0;}
下面程序运行时从键盘上输入:AabD↙,写出程序的运行结果。#include
发布时间:2025-03-22 23:57:27