标题:编程排错
取消只看楼主
飞扬白鸽
Rank: 1
等 级:新手上路
帖 子:108
专家分:0
注 册:2005-12-31
 问题点数:0 回复次数:0 
编程排错

#include <conio.h>
#include <stdio.h>

void fun(char *ss)
{
int n =0 , i ;
while ( *ss )
{
n++ ;
ss++ ;
}
for ( i = 1 ; i < n ; i+=2 )
if ( ss[i] >= 'a' && ss[i] <= 'z' )
ss[i] = ss[i] -32 ;
}


void main( void )
{
char tt[51];
clrscr();
printf("\nPlease enter an character string within 50 characters:\n" );
gets( tt );
printf("\n\nAfter changing, the string\n %s", tt );
fun(tt) ;
printf( "\nbecomes\n %s", tt );
}

将字符串ss中所有下标为奇数上的字母转换为大写,若该位置上不是字母,而不转换。

搜索更多相关主题的帖子: void printf fun string 
2006-03-02 19:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-48080-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.050832 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved