c語言的一些基本題型,編寫fun函式實現基本功能

2021-10-01 20:40:59 字數 1680 閱讀 7570

c語言的一些基本題型,編寫fun函式實現基本功能

1.計算並輸出給定整數的所有因子(不包括1與自身)之和。

#include

intfun

(int n)

return t;

/*將結果返回。*/

}

2.計算並輸出3到n之間所有素數的平方根之和

#include

#include

double

fun(

int n)

return s;

}

3.對變數n中的值保留2位小數,並對第三位進行四捨五入

#include

float

fun(

float n)

判斷整數是否是同構數,是返回1,否則返回0.

#include

intfun

(int x)

5.求f數列中大於t的最小乙個數,結果由函式返回。

f(0)=0 , f(1)=1,

f(n)=f(n-1)+ f(n-2)

#include

intfun

(int t)

return fn;

}

6.排列組合c(n,m)= n!/【m!(n-m)!】

#include

float

fun(

int m,

int n)

7.計算並輸出n(包括n)以內能被5或9整除的所有自然數的倒數之和。

#include

double

fun(

int n)

8.將大於形參m且緊靠m的k個素數存入xx所指的陣列中。

#include

void

fun(

int m,

int k,

int xx)

if(j==i)

xx[p++

]=i;

if(p>k)

break;}

}

9.求出陣列dd中前k個數的小數部分的和,並返回此值。

#include

double

acc(

int k,

double dd)

return result;

}

10.計算並輸出給定陣列(長度為9)中每相鄰兩個元素之平均值的平方根之和

#include

#include

double

fun(

double x[9]

)return sum;

}

11.刪除乙個字串中指定位置的字元。其中,a存放原字串,b存放刪除後的字串。

#include

void

fun(

char a,

char b,

int n)

i++;}

}

一些面試的基本題 非常經典

1.有a xx b xx 其中x為任意數字,求a b的值 2.有如下一組資料 code value 0001 100 0002 20 0003 30 0001 100 0001 20 0001 4 0002 5 等求每一組code的value值的合計值,最大值,最小值,平均值.3.有任意一段話 要求...

C語言的一些基本演算法

天文學上的潤年 原理 年數能整除於 4且不能整除 100或者可以整除 400,下面用標準 c語言的兩種實現方式 1 平潤年的判斷 include int main void else return0 2 平潤年的判斷 include int main void else return0 3 素數的判...

C語言一些基本概念

exit 0 正常執行程式並退出程式 exit 1 非正常執行導致退出程式 return 返回函式,若在主函式中,則會退出函式並返回一值。再細化一點 1.return返回函式值,是關鍵字 exit 是乙個函式。2.return是語言級別的,它表示了呼叫堆疊的返回 而exit是系統呼叫級別的,它表示了...