博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单词加密
阅读量:6275 次
发布时间:2019-06-22

本文共 474 字,大约阅读时间需要 1 分钟。

1 #include 
2 3 int main() 4 { 5 6 int i; 7 char ch_lower, ch_upper; 8 9 for (i = 1; i <= 6; i++)10 {11 scanf_s("%c", &ch_lower,sizeof(ch_lower));12 if (ch_lower >= 'a' && ch_lower <= 'z')13 {14 ch_upper = ch_lower - ('a' - 'A');15 printf("%c->%c->%d\n", ch_lower, ch_upper, ch_upper % 10);16 }17 }18 19 return 0;20 }

 

转载于:https://www.cnblogs.com/2018jason/p/10962094.html

你可能感兴趣的文章
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
设置 SecureCRT RZ 默认目录
查看>>
逆波兰表达式求值 javascript版
查看>>
SO_KEEPALIVE
查看>>
运维基础命令
查看>>
zookeeper系列(八)zookeeper运维
查看>>
Linux下的lds链接脚本简介(二)
查看>>
入门到进阶React
查看>>
C++每日练笔之日期类(基类)
查看>>
SVN 命令笔记
查看>>
修复Postfix 的Relay access denied问题
查看>>
检验手机号码
查看>>
thinkphp3.1随机取数据库中几条记录
查看>>
重叠(Overlapped)IO模型
查看>>
ffmpeg study 1
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>