編寫function的過程用於把十進位制的整數

2021-03-09 05:00:27 字數 2541 閱讀 3652

1樓:匿名使用者

dim m as integer

private sub ***mand1_click()m = inputbox("請輸入一個數字")text1.text = fact(m)

end sub

public function fact(a as integer) as string

dim s as string, r as integerdo while a <> 0

r = a mod 2

a = a \ 2

s = str(r) & s

loop

fact = s

end function

2樓:銷聲匿跡

private function fact(a as integer)

dim s as string, r(100), i, j as integer

do until a = 0

i = i + 1

r(i) = a mod 2

a = a \ 2

loop

for j = i to 1 step 1s = s & r(i)

next j

fact=s

end function

3樓:橡皮樹的部落格

public function dec_to_bin(byval dec as long) as string

dec_to_bin = ""

do while dec > 0

dec_to_bin = dec mod 2 & dec_to_bin

dec = dec \ 2

loop

end function

編寫function函式過程,能夠實現十進位制轉換為二進位制、八進位制、十六進位制。(用vb做)

4樓:

供參考……

#include "stdafx.h"

#include "iomanip.h"

void d10to2_8_16(int i,char radix)void main(void)

c語言,編一程式用遞迴函式,把輸入的一個十進位制整數轉換成二進位制數輸出

5樓:

#include

void f(int n)

int main()

return 0;}

6樓:匿名使用者

#include

void main()

7樓:匿名使用者

#include

void f(unsigned int n)

int main()

利用自定義函式編寫程式,實現將一個十進位制數轉換成二進位制數

8樓:匿名使用者

#include

void d2b(int dec)

while(len>0)

printf("\n");

}void main()

編寫程式**:定義一個函式過程實現十進位制數轉換成二進位制數、八進位制數、十六進位制數的功能。 80

9樓:

#include "stdio.h"

#include "stdlib.h"

int main()

c語言編寫一個程式,將十進位制整數n 轉換成二進位制數

10樓:匿名使用者

#include

int transfer(int x)

}return y;

}void main()

擴充套件資料:

c語言書寫規則:

1.一個說明或一個語句佔一行。

2.用{} 括起來的部分,通常表示了程式的某一層次結構。{}一般與該結構語句的第一個字母對齊,並單獨佔一行。

3.低一層次的語句或說明可比高一層次的語句或說明縮排若干格後書寫。以便看起來更加清晰,增加程式的可讀性。在程式設計時應力求遵循這些規則,以養成良好的程式設計風格。

11樓:匿名使用者

#include

#include

int main()

printf("%d",a);

return 0;}

12樓:匿名使用者

將輸出的內容先放置到一個陣列中,最後陣列反序輸出

13樓:游龍科技工作室

#include//十進位制數轉化為二進位制數void to_binary (int n); //binary n.二進位制的;雙的

int main ( void )

printf("完成");

return 0;

}void to_binary(int n)

vb60要求編寫function過程在文字框中輸入

寫了一段,窗 bai體上放du一個text,一個按鈕zhi,如下 daofunction sushu a as integer as integer for i 2 to a 1 step 1if a mod i 0 then msgbox a 不為素數 vbinformation vbokonly...

編寫function函式過程,能夠實現十進位制轉換為二進位制 八

供參考 include stdafx.h include iomanip.h void d10to2 8 16 int i,char radix void main void 編寫程式 定義一個函式過程實現十進位制數轉換成二進位制數 八進位制數 十六進位制數的功能。80 include stdio....

編寫VB程式編寫Sub過程把任意十進位制數N分別轉換成二進位制八進位制十六進位制表示的數

設計介面 private sub command1 click dim integerpart as long,decimalpart as double dim carry charactercode 15 as string carry array 2,8,16 integerpart int ...