Linux下完成的乙個作業程式

2021-05-21 20:01:27 字數 1153 閱讀 4003

文件建立日期: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    #define max_size 100

10   

11    // no.1: subroutine: float rounding ( float f_num );

12    float  rounding ( float f_num )

13   

21   

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

23    void  select_sort ( float list, int size )

24   

48        do

49        while ( itag; i-- )

62                list[i] = list[i-1];

63            list[tag] = element;

64        }

65       

66        return  (1);             // 返回1表示元素插入成功,返回0表示操作失敗

67    }

68   

69    // main function's declaration.

70    int  main ( void )

71   

92       

93        return  (0);

94    }

95   

96    // the end of c program: test06-07.c.

97   

如需使用整數型別的陣列元素值,只需對上面的程式中迴圈體內四捨五入保留到個位即可。

Linux下完成的乙個作業程式

文件建立日期 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 include...

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 給定某個班級的班號,顯...