設計簡單計算器,執行介面如圖,設計一個簡單計算器,執行介面如圖

2022-02-15 00:09:09 字數 1334 閱讀 8688

1樓:隨風v隨夢

'修改一些地方先:

'0-9 . 的按鈕分別設定name為nbutton,並依次設定index為0~10(注意按順序)

' + - * / = 的按鈕分別設定name為 cbutton,並依次設定index為0~5(注意按順序)

'提醒一下:以上要一個按鈕一個按鈕來改,就是設定name後要先設定index在設定下一個按鈕的name。。如此迴圈

'複製以下**

private sum as single '全域性變數

private doid as integer '記錄操作:0無 1+ 2- 3* 4/

private sub form_load()

text1.enabled=false:text1.text="0"

end if

private sub nbutton_click(index as integer)

if index=10 then

text1.text=text1.text & "."

else

text1.text=text1.text & index

end if

end sub

private sub cbutton_click(index as integer)

text1.text=cstr(doevent(doid,val(text1.text)))

doid=index+1

end sub

private function doevent(byval id as integer,byval v as single) as single

select case id

case 1

sum=sum+v

case 2

sum=sum-v

case 3

sum=sum*v

case 4

if v=0 then

msgbox "除數不能為0",,"提示"

else

sum=sum/v

end if

end select

doid=0

doevent=sum

end function

'由於是現寫的,所以未除錯,你參考一下把~

2樓:潛爾藍

這裡面還有科學計算器,不想要的話去了就行了

c語言中如何用**設計一個簡單計算器,實瑞兩個浮點數的加減乘除,介面如圖

3樓:匿名使用者

# include

void main()}}

公積金貸款計算器,公積金貸款計算器

住房公積金貸款額度要綜合計算才可以確定的。公積金貸款額度的計算,要根據還貸能力 房價成數 住房公積金賬戶餘額和貸款最高限額四個條件來確定,四個條件算出的最小值就是借款人最高可貸數額。計算方法如下 按還貸能力計算公式,貸款期限 月 使用配偶額度的 貸款期限 月 其中還貸能力系數為40 月工資總額 公積...

c語言 要求編寫簡單計算器的程式

include void main 方法一 include include include include struct complex multiply struct complex x,struct complex y struct complex int main struct complex...

公積金貸款買車計算器,公積金貸款買車計算器最新

公積金貸款計算,要根據還貸能力 房價成數 住房公積金賬戶餘額和貸款最高限額四個條件來確定,其中四個條件計算出的最小值就是貸款人最高可貸金額。計算公式為 借款人月工資總額 借款人所在單位住房公積金月繳存額 還貸能力系數 借款人現有貸款月應還款總額 貸款期限 月 使用配偶額度的 夫妻雙方月工資總額 夫妻...