練習03-17-03
從三個學生四門成績的二維陣列中,尋找到有成績不及格的學生,輸出對應成績:
輸出樣例:
the original score matrix:
75.00 31.00 44.00 21.00
12.00 82.00 37.00 48.00
51.00 99.00 7.00 32.00
the list of failed student:
the score of no1: 75.00 31.00 44.00 21.00
the score of no2: 12.00 82.00 37.00 48.00
the score of no3: 51.00 99.00 7.00 32.00
--------------------------------
process exited after 0.054 seconds with return value 0
請按任意鍵繼續. . .
**如下:
#include#include#includeint main()
putchar('\n');
} printf("the list of failed student:\n");
void find_fail(float (*p)[4],int n);
find_fail(score,3);
return 0;
}void find_fail(float (*p)[4],int n)
if(count>0) }}
void search(float (*p)[4],int n)
putchar('\n');
}
指向函式的指標,指向函式的指標作為函式引數
1.基本法 include pragma warning disable 4996 pragma warning disable 4715 指向函式的指標作為函式的引數 有兩個整數a,b,讓使用者輸入1,2或者3,當輸入1時,給出相對大值,當輸入2時,給出相對小值,當輸入3時,給出兩者之和 1.可以...
用陣列作為函式引數
我們都知道,可以用變數作為函式的引數,而陣列中的每乙個元素也是變數,因此我們也可以用陣列元素來作為函式引數。另外,用陣列名也可以作為實參和形參,傳遞的是陣列的首位址。一 用陣列元素作為函式實參 這與用變數作為實參一樣,是單向傳遞,取 值傳遞 的方式。二 用陣列名作為函式引數 此時,實參和形參都要用陣...
用指向函式的指標作為函式的引數,實現結構化程式設計
用指向函式的指標實現結構化程式設計 include intmain intmax int a,int b return a int min int a,int b return a int add int a,int b void process int a,int b,int p int,int ...