#include "string.h"
#include "std
io.h"main(){ char str[20],*pprintf("please input strings:\n")gets(str)
p=strwhile(*p!='\0')
{if(*p>='a' &&*P <='z')*p= *p - 3...
// 转化为小写
$str = "Mary Had A Little Lamb and She LOVED It So"
$str = strtolower($str)
echo $str// 打印 mary had a little lamb and she loved it so
// 转败拆橘化为大写
$str = "Mary Had A Little Lamb and She LOVED It So"
$str = strtoupper($str)
echo $str// 打印 MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
1、打开VC++环境,调节至使自己舒适的环境。调节字体和字的大御首小。
2、编辑程序:
#include <stdio.h>
void main()
{char aprintf("请输入一个小写字母: ")a=getchar()a=a-32printf("转换后的大写字母是:%c\n",a)}
3、进行编译,连接,运察团行,检验结果:
main()
{char x scanf("%c",&x) if(x>='a' &&x<='z') x-=32 printf("%c\n",x)}
最简单的方法就是:
char c = 'A'+32
void main()
{
char c='a'-32
printf("c %c",c)
getch()
}
扩展资料
算术运算符
用于各类数值运算。包括加(+)、减(-)、乘(*)、除(/)、求余(或称模运算,%)、自增(++)、自减(--)共七种。
关系运算符
用御冲于比较运算。包括大于(>)、小于(<)、等于(==)、 大于等于(>=)、小于等于(<=)和肢拆山不等于(!=)六种。
逻辑运算符
用于逻辑运算。包括与(&&)、或(||)、非(!)三种。
位 *** 作运算符
参与运算的量,按二进制位进行运算。包括位与(&)、位或(|)、位非(~)、位异或(^)、左历中移(<<)、右移(>>)六种。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)