标签:include amp NPU http input 根据 span 表达式 大写
#include <stdio.h> int main() { char ch; printf("please input:\n"); scanf("%c",&ch); // 根据程序功能描述,补足程序 if(ch>=‘a‘&&ch<=‘z‘); // 如果ch是小写字母,补足判定ch是小写字母的表达式 ch-=32; // 补足把ch中的小字母转换成大写字母的表达式语句 // 说明:语句就是在表达式末尾加分号; printf("%c",ch); return 0; }
标签:include amp NPU http input 根据 span 表达式 大写
原文地址:https://www.cnblogs.com/yyt20011109/p/11729731.html