赞
踩
思路:指针指向各个元素的地址来循环判断大小,判断一次,赋值一次。
#include<stdio.h>
void main()
{
char *p,b[10],min;
printf("请输入十个字符:");
gets(b);
p=b;//指针指向字符数组的首地址
for(min=*p;p<b+10;p++)//循环判断数组元素中的最小值
if(*p<min) min=*p;
printf("Ascii值最小的字符为:%c\n",min);
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。