字符串 自定义函数怎么写
在自定义函数中怎么输入输出字符串,比如,输入一个字符串,把其中的小写字母转化成大写,然后返回,写出自定义函数和主函数...
在自定义函数中怎么输入输出字符串,比如,输入一个字符串,把其中的小写字母转化成大写,然后返回,写出自定义函数和主函数
展开
3个回答
2014-01-03
展开全部
#include <stdio.h>
#include <string.h>
///字符串是不方便直接return的,
///常用方法是输入串和输出串都传入函数,
///在函数里给输出串赋值。
void go(const char* input, const char* output)
{
int i = 0;
if (input && output)
{
while (input[i])
{
if (input[i] >= 'a' && input[i] <= 'z')
{
output[i] = input[i] - 'a' + 'A';
}
else
{
output[i] = input[i];
}
}
}
}
int main()
{
const int len = 16;
char a[len] = "abcde";
char b[len];
go(a, b);
printf("%s\n", a);
printf("%s\n", b);
return 0;
}
#include <string.h>
///字符串是不方便直接return的,
///常用方法是输入串和输出串都传入函数,
///在函数里给输出串赋值。
void go(const char* input, const char* output)
{
int i = 0;
if (input && output)
{
while (input[i])
{
if (input[i] >= 'a' && input[i] <= 'z')
{
output[i] = input[i] - 'a' + 'A';
}
else
{
output[i] = input[i];
}
}
}
}
int main()
{
const int len = 16;
char a[len] = "abcde";
char b[len];
go(a, b);
printf("%s\n", a);
printf("%s\n", b);
return 0;
}
展开全部
#include <stdio.h>
#include <ctype.h>
int conv(char s)
{
return tolower(s);
}
int main()
{
char s[] = "Clare";
int i = -1;
while(s[i++])
s[i]=conv(s[i]);
puts(s);
while(1);
}
#include <ctype.h>
int conv(char s)
{
return tolower(s);
}
int main()
{
char s[] = "Clare";
int i = -1;
while(s[i++])
s[i]=conv(s[i]);
puts(s);
while(1);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>
void a2A(char *str)
{ while ( *str )
{ if ( (*str)>='a' && (*str)<='z' ) { (*str)-='a'; (*str)+='A'; }
}
}
void main()
{ char str[256];
scanf("%s",str);
a2A(str);
printf("%s\n",str);
}
void a2A(char *str)
{ while ( *str )
{ if ( (*str)>='a' && (*str)<='z' ) { (*str)-='a'; (*str)+='A'; }
}
}
void main()
{ char str[256];
scanf("%s",str);
a2A(str);
printf("%s\n",str);
}
追问
你少写了一个 str++;
追答
没错,失误了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询