2025-03-27 18:25:58 +08:00

39 lines
981 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*----------------------------------------------------------------------
【程序设计】
------------------------------------------------------------------------
程序功能:输入带有数字和字母的字符串,使用指针,将数字放置在字母前面(按输入顺序)。
样例1
输入字符串:jngk2025hello
排序后的字符串: 2025jngkhello
样例2
输入字符串:123abc666def
排序后的字符串: 123666abcdef
------------------------------------------------------------------------
注意部分源程序给出如下。请勿改动主函数main或其它函数中给出的内容仅在
Program-End之间填入若干语句。
不要删除标志否则不得分。
不要修改或删除Program-End之外的内容否则不得分。
----------------------------------------------------------------------*/
#include <stdio.h>
void fn(char* str){
char *p,*q,ch;
p = str;
q = str;
/**********Program**********/
/********** End **********/
}
int main()
{
char s[100];
printf("输入字符串:");
gets(s);
fn(s);
printf("排序后的字符串: %s\n",s);
return 0;
}