/*
输入个数不限的数字,以逗号为分隔,以回车键为结束,数字大小在-32768-32767之间。从小到大排序后以4个数每行输出
如:
输入:12,34,-12,23,123,56,-9,789
输出:-12 -9 12 23
34 56 128 789
*/
#include <stdio.h>
#include<stdlib.h>
#include <string.h>
#define INITSIZE 100
#define INCREMENT 5
int my_atoi(char *s);
int main()
{
char *s,*p,*q,*r;//输入字符串
s=(char*)malloc(INITSIZE*sizeof(char));
int *num;//排序后的字符串
int i=0,j=0,m=0,n=0,length=
输入个数不限的数字,以逗号为分隔,以回车键为结束,排序后以4个数每行输出
最新推荐文章于 2024-01-03 22:56:42 发布