排序
找出两个字符串中相应位置上相
找出两个字符串中相应位置上相同的字母存入另一字符数组,并反序输出。 #include 'stdio.h'#include 'conio.h'#define MAXLEN 81void InputString(char s[],char t[]){ int i; printf('Ple...
利用指针找出3个整数中的最小数
以下程序的功能是利用指针找出3个整数中的最小数。#include 'stdio.h'void main( ){ int *p1,*p2,*p3,min,x,y,z;p1=&x;p2=&y;p3=&z;printf('please input three integer: ');scanf(...
在字符串str中找出最大的字符
编写一个程序实现以下功能:在字符串str中找出最大的字符并放在第一个位置上,并将该字符前的原字符往后顺序移动,如 chyab变成ychab。 #include 'stdio.h'#include 'conio.h'#include 'st...
编写一个程序找出一个二维数组中的鞍点
编写一个程序找出一个二维数组中的鞍点,即该位置上的元素在该行上最大,在该列上最小,也可能没有鞍点。 #include 'stdio.h'#include 'conio.h'#define M 3#define N 6 void main(){ int a[...
找出1-100之间能被7或11整除
以下程序的功能是:找出1-100之间能被7或11整除的所有整数的数量并输出每个整数(其中输出是每5个数为一行)。#include 'stdio.h'void main(){ int n=0,a[100],i; for(i=1; i<=100; i++...