码迷,mamicode.com
首页 > 其他好文 > 详细

(5)实现一个函数,把一个字符串中的字符从小写转为大写。

时间:2016-02-29 10:42:30      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

#include "stdio.h"
#include "conio.h"
#include "stdafx.h"
#include <iostream>
using namespace std;

void upper(char* s, char* us)
{
while(*s != ‘\0‘)
{
if(*s >= ‘a‘ && *s <= ‘z‘)
{
*us = *s - 32;
}
else
{
*us = *s;
}
s++;
us++;
}
*us = ‘\0‘;//注意不要漏了这一句
}

int main()
{
char A[20],B[20];
printf("Please input a string:\n");
scanf_s("%s", A, 20);
upper(A,B);
printf("%s", B);
system("pause");
}

(5)实现一个函数,把一个字符串中的字符从小写转为大写。

标签:

原文地址:http://www.cnblogs.com/qingfengshuimu/p/5226602.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!