首页
编程
java
php
前端
首页
编程
java
php
前端
将字母M转化为字母m并输出
#include <stdio.h> void main() { char a = 'M'; a = a + 32; printf("反转后:%c", a); getchar(); }
点击展开全文