ex3

 #include 
  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;
  }

ex3_第1张图片

你可能感兴趣的:(ex3)