实验:编写程序,利用随机函数产生10个整型数,并按照升序排列输出

代码实验部分:

#include "stdlib.h"
#include "time.h"
#include
void sortl(int s[],int n)
{
    int i,j;
    int temp;
    for(i=0;i=i+1;j--)
        {
            if(s[j]

代码实现效果:

实验:编写程序,利用随机函数产生10个整型数,并按照升序排列输出_第1张图片

你可能感兴趣的:(c语言,c++,数据结构,算法)