#include <stdio.h> int main() { char c; while (scanf("%c", &c) == 1 && c != '\n') { if (c >= 'A' && c <= 'Z') { c = 'Z' - (c - 'A'); } printf("%c", c); } return 0; }
c语言编程练习题:7-65 字符串替换
作者:yunjinqi
类别:编程
日期:2023-05-29 21:53:13
阅读:597 次
消耗积分:0 分
版权所有,转载本站文章请注明出处:云子量化, https://www.yunjinqi.top/article/190
最新文章
系统当前共有 406 篇文章