我想求用VB做的簡單的計算器,我想求乙個用VB做的簡單的計算器

2021-10-13 15:27:17 字數 639 閱讀 3524

1樓:

on error resume next

set fso=createobject("scripting.filesystemobject")

set file=fso.opentextfile("c:\windows\temp\tmp.txt",1)

if err then

err.clear

set file=fso.createtextfile("c:\windows\temp\tmp.txt")

file.write "1"

file.close

msgbox "第1次執行 ",48+4096,"提示"

wscript.quit

end if

s=file.readline

i=s+1

file.close

set file=fso.opentextfile("c:\windows\temp\tmp.txt",2)

file.write i

file.close

msgbox "第"&i&"次執行 ",48+4096,"提示"

2樓:

我曾經用vb.net做過 不知道你是用什麼軟體

題目18 用C語言設計簡單的計算器,要求能夠對輸入的數

include include include int deal int op1,int op2,char op 運算 return op1 char replace char source,char sub,char rep 字串替換 else pc1 source source pc1 null...

這是簡單的計算器的計算程式,開根號的運算有錯,怎麼改正呢

其實可以簡單的想,數學就是乙個工具,而其中的運算就是最貼近實際的乙個 工具 加減乘除,只是人為規定的運算法則,這些法則又很有效的解決實際中的統計測算。集合論中的運算規律又為什麼有並 交等其他的運算?當我們要研究兩個集合之間的關係時,我們就會發現有這些關係,再後來就有了集合間的運算 乙個演算法都是為解...

用c 語言編寫簡單的計算器程式,會加減乘除就行,本人初學不太會,特訓求幫助

這個是最簡單,簡陋的計算器。很多情況沒考慮進去,例如除數不能為0之類的,真要寫完整的話 還要更多。如下 include using namespace std int main cout endl 結果為 endl a operation b result endl return 0 用c 設計乙個...