6-1 計算兩數的和與差 (10分)
void
sum_diff
(float op1,
float op2,
float
*psum,
float
*pdiff )
6-2 字串的連線 (15分)
char
*str_cat
(char
*s,char
*t )
6-3 利用指標找最大值 (10分)
void
findmax
(int
*px,
int*py,
int*pmax )
6-4 交換整數(*) (16分)
void
intswap
(int
*x,int
*y)
6-5 實數 - 8. 交換實數 (10分)
void
realswap
(double
*x,double
*y)
6-6 利用指標,實現字串複製函式 (20分)
char
*strmycpy (
char
*s,char
*q,int m )
7-1 利用指標返回多個函式值 (30分)
#include
#include
#include
#include
#include
typedef
long
long ll;
void
max_min
(int a,
int n,
int*max,
int*min)
printf
("max = %d\nmin = %d"
,*max,
*min);}
intmain()
max_min
(a,n,
&max,
&min)
;return0;
}
7-2 字串的連線 (15分)
#include
#include
#include
#include
#include
typedef
long
long ll;
#define max 10000
intmain()
7-3 兩數的互換 (30分)
#include
#include
#include
#include
#include
typedef
long
long ll;
void
intswap
(int
*x,int
*y)int
main()
學生類(指標)
設計乙個學生類student,資料成員包括學號 num 和成績 score 成員函式根據需要自行設計 建議配備需要的set get函式,以及必要的輸入或輸出,給出的 中也可以找到需要成員函式的線索 在main函式中,要做到 includeusing namespace std class stude...
一級指標二級指標
例如 int p null int代表指標p指向的資料型別是int型,代表這是乙個指標變數,1 指標變數儲存的內容是指向的變數的位址 2 在使用sizeof判斷指標的位元組數時,在32位機器上為4個位元組,在64位機器上為了相容,仍然是四個位元組大小 3 小知識點,不同型別的指標除了指向的變數資料型...
指標操作學生類
設計乙個學生類student,包括學號 num 和成績 score 建立乙個物件陣列,通過初始化,設定5個學生的資料,要求 1 用指標指向陣列首元素,輸出第1 3 5個學生的資訊 2 設計乙個函式int max student arr 用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高...