字符串的问题
从键盘输入一个字符串a,并在a串中的最大元素后面插入字符串b
怎么找出字符串中的最大啊 想了好久 只要问问这里的大哥拉
#include <stdio.h>
#include <conio.h>
#include <string.h>
#define M 100
void main(void)
{
char str1[M],str2[M],c;
int i,j=0;
printf("please input the first string:\n");
gets(str1);
printf("please input the second string:\n");
gets(str2);
c=str1[0];
for(i=0;str1[i]!='\0'&&i<M;i++) /*找出最大字符*/
if(str1[i]>c)
{
c=str1[i];
j=i;
}
str1[j+1]='\0'; /*最大字符下一个字符置字符串结束标志*/
strcat(str1,str2); /*连接*/
puts(str1);
getch();
}
[此贴子已经被作者于2006-2-12 22:59:27编辑过]