7

您所在的位置:网站首页 后面英文单词 7

7

2024-07-17 16:48| 来源: 网络整理| 查看: 265

本题要求编写程序,输入若干英文单词,对这些单词按长度从小到大排序后输出。如果长度相同,按照输入的顺序不变。

输入格式:

输入为若干英文单词,每行一个,以#作为输入结束标志。其中英文单词总数不超过20个,英文单词为长度小于10的仅由小写英文字母组成的字符串。

输出格式:

输出为排序后的结果,每个单词后面都额外输出一个空格。

输入样例: blue red yellow green purple # 输出样例: red blue green yellow purple #include #include int main() { char s[25][15], t[15]; int n = 0; while (1) { scanf("%s", s[n]); if (s[n][0] == '#') break; n++; } for (int i = 0; i < n - 1; i++) { for (int j = i + 1; j < n; j++) { if (strlen(s[j]) < strlen(s[i])) { strcpy(t, s[i]); strcpy(s[i], s[j]); strcpy(s[j], t); } } } for (int i = 0; i < n; i++) { printf("%s ", s[i]); } return 0; }

 



【本文地址】


今日新闻


推荐新闻


    CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3