1.實現乙個函式,列印乘法口訣表,口訣表的行數和列數自己指定,
輸入9,輸出99口訣表,輸入12,輸出1212的乘法口訣表。
#define _crt_secure_no_deprecate
#include
#include
table
(int n)
printf
("\n");
}}intmain()
執行結果如下
2.使用函式實現兩個數的交換。
#define _crt_secure_no_deprecate
#include
#include
void
swap
(int
* a,
int* b)
intmain()
執行結果如下
3.實現乙個函式判斷year是不是潤年。
**如下
#define _crt_secure_no_warnings
#include
#include
intbis***tile
(year)
intmain()
執行結果如下
4.建立乙個陣列,
實現函式init()初始化陣列、
實現empty()清空陣列、
實現reverse()函式完成陣列元素的逆置。
**如下
#include
#include
#include
void
initarry
(int arr,
int size)
}void
emptyarry
(int arr,
int size)
void
reversearry
(int arr,
int size)
}void
printarry
(int arr,
int size)
printf
("\n");
}int
main()
執行結果如下
5.實現乙個函式,判斷乙個數是不是素數。
**如下
#define _crt_secure_no_warnings
#include
#include
intis_prime
(int n)
}return1;
}int
main()
else
printf
("%d不是乙個素數!\n"
, num)
;return0;
}
執行結果如下
c語言初學練習 三
1.在螢幕上輸出以下圖案 如下 include include intmain printf n for i 1 i 7 i printf n system pause return0 程式執行結果如下 2.求出0 999之間的所有 水仙花數 並輸出。水仙花數 是指乙個三位數,其各位數字的立方和確好...
C語言初學練習 四
1.完成猜數字遊戲。如下 define crt secure no warnings include include include void game else if num guess else intmain else if choice 2 else system pause return0...
C語言初學練習 六
1.第n個斐波那契數。遞迴實現 define crt secure no warnings include include intfibonacci int n else int main 執行結果如下 非遞迴實現 define crt secure no warnings include incl...