【#文档大全网# 导语】以下是®文档大全网的小编为您整理的《100个学生按姓名字母排序》,欢迎阅读!
输入10个学生姓名,按字典顺序将排在最前面的学生姓名输出。即在字符数组中求最小字符串。
#include #include #define AR 80 main()
{int n;char str[AR], min[AR]; printf("Please enter five names:\n"); gets(str); strcpy(min, str); for (n=1; n<5; n++)
{gets(str); if (strcmp(str, min) < 0) {strcpy(min, str); } }
printf("The min is:");puts(min); return 0; }
Please enter five names: wang alen liu zhang bob
The min is:alen
本文来源:https://www.wddqxz.cn/bfaf963927d3240c8547ef32.html