C語言函式之經典例題

2021-10-10 07:38:06 字數 1449 閱讀 1098

※printf函式返回值型別(返回值是輸出的字元數量,包括數字,字母,標點符號,空格等)

如:

#define _crt_secure_no_warnings 1

#include

intmain()

//結果輸出4321

寫一函式判斷乙個數是否是素數

#define _crt_secure_no_warnings 1

#include

intisprime

(int n)

return0;

}int

main()

else

return0;

}

優化之後

#define _crt_secure_no_warnings 1

#include

#include

intisprime

(int n)

return0;

}int

main()

return0;

}

寫一函式判斷乙個數是否是素數,並用該函式輸出100-200間的素數

#define _crt_secure_no_warnings 1

#include

intisprime

(int n)

return0;

}int

main()

return0;

}

寫一函式判斷year是不是閏年

#define _crt_secure_no_warnings 1

#include

intisleapyear

(int n)

return-1

;}intmain()

else

return0;

}

寫一函式交換兩個整數的內容(按址傳參)

#define _crt_secure_no_warnings 1

#include

intswap

(int

* a,

int* b)

intmain()

實現乙個函式,列印乘法口訣表,口訣表的行數和列數自己指定.如:輸入9,輸出9 * 9口訣表,輸出12,輸出12 * 12的乘法口訣表。

#define _crt_secure_no_warnings 1

#include

void

chart

(int n)

printf

("\n ");

}int

main()

以上**均執行良好!

加油鐵汁!

C語言經典例題之遞迴

遞迴方式實現列印乙個整數的每一位 define crt secure no warnings 1 include void print int n printf d n 10 intmain 遞迴實現n的階乘 define crt secure no warnings 1 include intfa...

C語言經典例題

學習中碰到的許多例題 include int main return 0 水仙花數的大概演算法就是通過for迴圈提取出每一位數,再利用if語句判斷最後輸出。當然,也可以換一種迴圈,大致就是這樣的演算法。includeint main return 0 利用for迴圈的巢狀還可以,做出許多更強的東西。...

C語言運用 經典例題

在某次實彈射擊訓練中,班長將十個戰士圍成一圈發子彈。首先,班長給第乙個戰士10顆,第二個戰士2顆,第三個戰士8顆,第四個戰士22顆,第五個戰士16顆,第六個戰士4顆,第七個戰士10顆,第八個戰士6顆,第九個戰士14顆,第十個戰士20顆。然後按如下方法將每個戰士手中的子彈進行調整 所有的戰士檢查自己手...