这篇教程C 语言实例 - 字符串排序写得很实用,希望能帮到您。 按字典顺序排序。 实例#include<stdio.h>#include <string.h> int main(){ int i, j; char str[10][50], temp[50]; printf("输入10个单词:/n"); for(i=0; i<10; ++i) scanf("%s[^/n]",str[i]); for(i=0; i<9; ++i) for(j=i+1; j<10 ; ++j) { if(strcmp(str[i], str[j])>0) { strcpy(temp, str[i]); strcpy(str[i], str[j]); strcpy(str[j], temp); } } printf("/n排序后: /n"); for(i=0; i<10; ++i) { puts(str[i]); } return 0;} 输出结果为: 输入10个单词:CC++JavaPHPPythonPerlRubyRJavaScriptPHP排序后: CC++JavaJavaScriptPHPPHPPerlPythonRRuby C 语言实例 - 字符串复制 C 语言实例 - 使用结构体(struct) |