1.實現乙個函式,列印乘法口訣表,口訣表的行數和列數自己指定,
輸入9,輸出99口訣表,輸入12,輸出1212的乘法口訣表。
#define _crt_secure_no_warnings
#include
#include
void
mul(
int n)
printf
("\n");
}}intmain()
2.使用函式實現兩個數的交換。
#define _crt_secure_no_warnings
#include
#include
intexchange
(int
* x,
int* y)
intmain()
3.實現乙個函式判斷year是不是潤年。
#define _crt_secure_no_warnings
#include
#include
void
leap_year()
else
}int
main()
建立乙個陣列,
實現函式init()初始化陣列、
實現empty()清空陣列、
實現reverse()函式完成陣列元素的逆置。
要求:自己設計函式的引數,返回值。
#include
#include
void
init
(int arr,
int size)
printf
("\n");
}int
empty
(int arr,
int size)
printf
("\n");
}int
reverse
(int arr,
int size)
;for
(int i=
0; i < size; i +=1
)for
(int i =
0; i < size; i ++
)printf
("\n");
}int
main()
;int size;
size =
sizeof
(arr)
/sizeof
(arr[0]
);reverse
(arr, size)
;empty
(arr, size)
;init
(arr, size)
;system
("pause");
return0;
}
5.實現乙個函式,判斷乙個數是不是素數。
#define _crt_secure_no_warnings
#include
#include
#include
void
prime_num
(num)}if
(i >=
sqrt((
double
)num))}
intmain()
C語言練習 6
1.實現乙個函式,列印乘法口訣表,口訣表的行數和列數自己指定,輸入9,輸出9 9口訣表,輸入12,輸出12 12的乘法口訣表。void printmulitelist int line printf n 2.使用函式實現兩個數的交換。void swap int pa,int pb 如果直接傳遞int...
C語言練習題 6
1 寫一函式int fun char p 判斷一字串是否為回文,是返回1,不是返回0,出錯返回 1.例如 字串 123454321 就是回文字串 include 寫一函式int fun char p 判斷一字串是否為回文,是返回1,不是返回0,出錯返回 1.例如 字串 123454321 就是回文字...
C語言練習
練習1 include stdlib.h include iostream.h include stdio.h void main cout 輸入檔案1的資料內容 以 結束 while ch stu n void input char a a用於接收要寫入資料的檔名 inti file fp if ...