1.實現乙個函式,列印乘法口訣表,口訣表的行數和列數自己指定,
輸入9,輸出99口訣表,輸入12,輸出1212的乘法口訣表。
#define _crt_secure_no_warnings
#include#includevoid mul(int n)//自定義的乘法函式。
} }}int main()
2.使用函式實現兩個數的交換。
#define _crt_secure_no_warnings
#include#includevoid swap(int *x, int *y)
int main()
3.實現乙個函式判斷year是不是潤年。
#define _crt_secure_no_warnings
#include#includeint leap(int year)
int main()
else
system("pause");
return 0;
}
4.實現乙個函式,判斷乙個數是不是素數。
void leap(int num)
} if (i >= num) }
int main()
python 寫的幾道題
乘法口訣 for i in range 1,10 for j in range 1,i 1 print d d 2d i,j,i j end print 列印出所有的 水仙花數 所謂 水仙花數 是指乙個三位數,其各位數字立方和等於該數本身。例如 153是乙個 水仙花數 因為153 1的三次方 5的三...
幾道趣味題
1.有乙個隨機數發生器,可以產生1到5的隨機數,利用這個隨機發生器,怎樣產生1到7的隨機數 最直接的想法是拿隨機數乘以7然後除以5,但這樣產生的結果並不是等概率的,7 rand 5中產生不了3和6,因而不可行 正確的做法是5 rand rand 然後捨棄最後4個數,剩餘21個數字。每三個數分為一組,...
幾道演算法題
1 n階乘之和 public class test1 sum kk system.out.println sum 2.獲取二維陣列每列最小的值 public class test2 system.out.println sum public long jiecheng int x return su...