排序
找出两个字符串中相应位置上相
找出两个字符串中相应位置上相同的字母存入另一字符数组,并反序输出。 #include 'stdio.h'#include 'conio.h'#define MAXLEN 81void InputString(char s[],char t[]){ int i; printf('Ple...
通过指针变量按字符串的长度对三个字符串从大到小排序
编写一个程序通过指针变量按字符串的长度对三个字符串从大到小排序,要求将这三个字符串存储在一个二维数组中。 法一:#include 'stdio.h'#include 'conio.h'#include 'string.h'#define M 3...
统计字符串中特定字符的个数
从键盘输入一串字符串,统计字符串中特定字符的个数(特定字符也需要从键盘输入),并输出个数。 #include 'stdio.h'#include 'conio.h'#include 'string.h'void main(){ char s[100],ch...
在字符串str中找出最大的字符
编写一个程序实现以下功能:在字符串str中找出最大的字符并放在第一个位置上,并将该字符前的原字符往后顺序移动,如 chyab变成ychab。 #include 'stdio.h'#include 'conio.h'#include 'st...
读入的两个字符串s1
以下程序的功能是读入的两个字符串s1,s2进行连接操作(s2连接到s1后)。#include 'string.h'void main(){ char s1[100],s2[100]; int i,j; gets(s1); get...
将读入的字符串str进行逆序后输出
以下程序的功能是将读入的字符串str进行逆序后输出。#include 'stdio.h'void main(){ char str[100],k;int n,i,j; gets(str); n=0; while( ① ) n++; for( ...
是将读入的字符串s1复制给字符串s2
以下程序的功能是将读入的字符串s1复制给字符串s2。#include 'stdio.h'void main( ){int i; char s1[20],s2[20]; printf('enter string1'); gets(s1);for(i=0; ① ;i...