符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
#include"stdio.h"
枣强ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:13518219792(备注:SSL证书合作)期待与您的合作!
void
main()
{
char
a;
int
c='a'-'A';
printf("大小写转换\n输入要转换的字符串:\n");
while(scanf("%c",a)!=EOF)
{
if(a='a'a='z')//检测如果是小写则执行下一句,如果是大写则执行else
{
a=a-c;
printf("%c",a);
}
else//如果检测是大写则执行这里
{
a=a+c;
printf("%c",a);
}
}
}
用ctype.h中的函数tolower和toupper。前者以大写的字符作为参数,返回相应的小写字符;后者以小写的字符作为参数,返回相应的大写字符。
#include ctype.h
#include stdio.h
int main()
{
char c = 'A';
printf("%c", tolower(c)); //a
c = 'b';
printf("%c", toupper(c)); //B
return 0;
}
如果没有相应的大小写,函数会返回字符本身。
#include ctype.h
#include stdio.h
int main()
{
char c = '0';
printf("%c", tolower(c)); //0
printf("%c", toupper(c)); //0
return 0;
}
#includestdio.h
#includestring.h
void fun2(char *ss)
{
int i;
for(i=1;istrlen(ss);i+=2)
{
if(ss[i]='a'ss[i]='z')
ss[i]-=32;
}
}
main()
{
char ss[10];//存放字符串你得用数组,用指针的话也得初始化指针地址,类似 int a[10],char *p;p=a这样
gets(ss);
fun2(ss);
puts(ss);
}