c語言基礎

2021-09-25 13:58:03 字數 2416 閱讀 5463

#ifndef _test_h_

#define _test_h_

// 定義韓式

int fac (

int n)

;char

*reverse

(char

*s);

inttest

(void);

voidot(

void);

#endif

#include

#include

// 函式實體

# d2s

● itoa

():將整型值轉換為字串。

● ltoa

():將長整型值轉換為字串。

● ultoa

():將無符號長整型值轉換為字串。

● gcvt

():將浮點型數轉換為字串,取四捨五入。

● ecvt

():將雙精度浮點型值轉換為字串,轉換結果中不包含十進位制小數點。

● fcvt

():指定位數為轉換精度,其餘同ecvt()。

# s2d

● atof

():將字串轉換為雙精度浮點型值。

● atoi

():將字串轉換為整型值。

● atol

():將字串轉換為長整型值。

● strtod

():將字串轉換為雙精度浮點型值,並報告不能被轉換的所有剩餘數字。

● strtol

():將字串轉換為長整值,並報告不能被轉換的所有剩餘數字。

● strtoul

():將字串轉換為無符號長整型值,並報告不能被轉換的所有剩餘數字。

void

func()

void

func()

;int i=0;

int lenth =

sizeof

(a)/

sizeof

(typeof

(a[0])

);for(

; i)}

void

func()

}

void

func()

void

func()

void

func()

#include

#include

#include

#include

void

open

(char

*path)

void

close

(char

void

movebyrec

(hwnd win,

int y)

}void

movebyfor

(hwnd win,

int y)

}void

movebywhile

(hwnd win,

int y)

}void

movebydowhile

(hwnd win,

int y)

while

(y>0)

;}void

movebygoto

(hwnd win,

int y)

}void

movewin()

else

}int

main()

#include

#include

void

randint

(int size,

int*arr,

int max)

}

void

sort

(int

*arr,

int size)}}

}

int

findbin

(int t**al,

int*arr,

int size)

else

if(t**al > arr[mid]

)else

}}

void

ptls

(int

*arr,

int lenth)

printf

("]\n");

}

c 語言基礎

三個訪問描述符 public private 和protected 都可以修飾類的資料成員和成員函式 public 可以可以被任何訪問,private 只能被該類的公,私成員函式,該類的友元函式或者友元類的成員函式訪問。protected 只能被該類的公,私成員函式和該類的派生類訪問。c 中除了,和...

c語言基礎

1.問題描述 從鍵盤輸入三個整數,分別存入x,y,z三個整型變數中,計算並輸出三個數的和以及平均值。輸入形式 從鍵盤輸入三個整數,整數之間以空格隔開。輸出形式 在螢幕上分兩行顯示結果 第一行為三個數的和,整數形式輸出 第二行為三個數的平均值,浮點數形式輸出,小數點後保留兩位小數。輸入樣例 3 2 3...

C語言基礎

找最大最小整數 2.問題描述 編寫乙個程式,使用者輸入若干整數,試找出其中的最大數和最小數。輸入形式 使用者在第一行待輸入資料個數,在第二行輸入資料。輸出形式 程式在下一行輸出資料的最大值和最小值 樣例輸入 589 62 96 74 52 樣例輸出 96 52 樣例說明 使用者第一次輸入的為資料個數...