Linux下完成的乙個作業程式

2021-05-21 20:01:27 字數 1184 閱讀 9239

文件建立日期:2010-02-19

[檔案1: test06-08.c]

01    // p174: 2.程式設計題 (8)把有序的兩個陣列a和b合併,要求合併後的陣列依然有序

02   

03    // the beginning of c program: test06-08.c.

04   

05    // header files included.

06    #include

07    #include "head06-08.h"

08   

09    // macro definition.

10    #define max_size 100

11   

12    // main function's declaration.

13    int  main ( void )

14   

21   

22    // no.2: subroutine: void select_sort ( float list, int size ); 選擇排序子函式

23    void select_sort ( float list, int size )

24   

48        for ( i=0; i<*size; i++ )

49       

56        tag = i;

57        if ( tag == *size )                // 在有序表的尾部插入

58            list[*size] = element;

59        else                               // 在有序表的其他位置插入

60       

65        *size = *size + 1;

66        // 返回1表示元素插入成功,返回0表示操作失敗.

67        return  (1);

68    }

69   

70    // the end of c header file program: head06-08.c.

71   

讓看**像欣賞「高山流水」一樣——心情舒暢啊    (*^__^*)

Linux下完成的乙個作業程式

文件建立日期 2010 02 19 01 p173 2.程式設計題 7 02 03 the beginning of c program test06 07.c.04 05 header files included.06 include 07 08 macro definition.09 defi...

Linux下完成的乙個作業程式

文件建立日期 2010 02 19 01 p174 2.程式設計題 13 不利用strcmp函式,自己程式設計實現兩個任意字串的比較。02 03 the beginning of c program test06 13.c.04 05 header files included.06 include...

設計乙個學生作業完成情況的管理程式

請設計乙個學生作業完成情況的管理程式。假設某門課程一學期要留10次作業,每次老師要進行批改,給出分數後還要進行登記。學期期末要根據每次作業的成績計算出最終的平時成績 滿分100 該程式應該具有下列功能 1 錄入某位學生某次作業的分數 2 給定學號,顯示該學生的作業完成情況 3 給定某個班級的班號,顯...