幾個小程式

2021-09-02 08:18:18 字數 847 閱讀 7054

幾個c語言程式 @

一、如何 交換整形變數的內容?

1.給定兩個整形變數的值,將兩個值的內容進行交換。

#includeint  main()

不允許建立臨時變數,交換兩個數的內容

#includeint  main()

二、求max值

3.求10 個整數中最大值。

#include int main()

; int max = num[0];

int i = 0;

for (i = 0; i < 10; i++)

printf("%d\n", max);

system("pause");

return 0;

}

4.將三個數按從大到小輸出。

#define  _crt_secure_no_warnings

#includeint main( )

if (b < c)

if (a < b)

printf("從大到小:%d %d %d", a, b, c);

system("pause");

return 0;

}

三、求最大公約數

5.求兩個數的最大公約數。

#define   _crt_secure_no_warnings

#includeint main()

system("pause");

return 0;

}

幾個shell小程式

說明 以下外殼指令碼,完成後全部拷貝至系統的公共可執行程式目錄,使得可以在任意目錄下執行 sudo cp hello calc mcp fileinfo guessnum bin helloshell bin中 你好 bin bash 宣告shell直譯器位置 word hello shell ec...

幾個VBA的小程式示例

1 判斷字串中是否包含另乙個字串 sub test1 dim str as string str 英屬維京群島持續發展控股 劉敦輝 ifinstr str,then msgbox 包含 else msgbox 不包含 endif endsub sub test2 dim str as string ...

幾個常見的「演算法」小程式

1.將字串 i am a good man 輸出為 man good a am i using system namespace class program console.readline 2.有一列數1,1,2,3,5,求第30個數.用遞迴 這個 遍地都是,不解釋.using system na...