编写函数void fun(char *str),功能:对形参str所指字符串中的字符按ASCII码升序排序。例如,下面程序运行时输入:The C Programming Language<回车>

it2023-02-04  53

#include <stdio.h> #include <string.h> void fun( char t[] ) { char c; int i, j; for( i = strlen( t )-1; i>0; i-- ) for( j = 0; j < i; j++ ) if( t[j] >t[ j + 1 ] ) { c = t[j]; t[j] = t[ j + 1 ]; t[j + 1 ] = c; } } int main() {char s[100]; gets(s); fun(s); puts(s); }
最新回复(0)