计算器使用方法

时间:2023-05-24 06:38:45编辑:奇闻君

知识点:计算器使用方法收集:满琢芽 编辑:荷花仙子
本知识点包括:1、普通计算器使用方法 2、计算器函数的使用方法 3、计算器上的M+,M-是怎么用啊? 4、财务计算器使用方法及技巧 5、计算器使用方法 。


《计算器使用方法》相关知识

教师还要指出教科书上的符号S与CZ1206型计算器上的符号S的意义不同,而与该计算器上的符号σ相同,在CZ1206型计算器键盘上,用σ表示一组数据的标准差,由于这个计算器上未单设方差计算键,我们可以先按键σ,然后将它平方,即按键eq \x(×)eq \x(=),就得到方差值S2.

知识拓展:

1:计算器使用方法CASIO科学计算器怎样求方差和标准差快


知识要点归纳:

先按mode 选SD 进入统计

逐个输入数据按M+

输入完以后按shift 2(2上面的黄色符号表示方差)其他符号你可以自己用 平均数什么都可以求

还有记住新一次统计要shift AC来清空内存数据

具体操作看说明书最靠谱.

2:计算器中按键的用法举例说明一下.不太懂


知识要点归纳:

什么按键啊

我编了一个

把代码给你吧

Public p As String

Public f As Double

Public s As Double

Dim X

Dim a

Dim b

Dim c

Dim d

Private Sub cmdAbs_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> 0 Then

f = txtScreen.Text

s = f

s = Abs(s)

txtScreen.Text = s

txtScreen2.Text = s

End If

End Sub

Private Sub cmdAtn_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> "" Then

f = txtScreen.Text

s = f

s = Atn(s)

txtScreen.Text = s

txtScreen2.Text = s

End If

End Sub

Private Sub cmdClean_Click()

txtScreen = ""

f = 0

s = 0

End Sub

Private Sub cmdClear_Click()

txtScreen.Text = ""

f = 0

s = 0

txtScreen2.Text = ""

txtGH.Text = ""

cmdSpr.Enabled = True

cmdXmY.Enabled = True

cmdCos.Enabled = True

cmdSin.Enabled = True

cmdMi.Enabled = True

cmdAbs.Enabled = True

cmdds.Enabled = True

cmdAtn.Enabled = True

cmdeN.Enabled = True

cmdLog.Enabled = True

cmdTan.Enabled = True

cmdspr2.Enabled = True

cmdGHH.Enabled = True

End Sub

Private Sub cmdCos_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> "" Then

f = txtScreen.Text

s = f

s = Cos(s)

txtScreen.Text = s

txtScreen2.Text = s

End If

End Sub

Private Sub cmdDigit_Click(Index As Integer)

txtScreen.Text = txtScreen.Text & cmdDigit(Index).Caption

s = txtScreen.Text

End Sub

Private Sub cmdDivide_Click(Index As Integer)

If p = "" Then

txtScreen.Text = ""

p = "/"

f = s

s = 0

End If

End Sub

Private Sub cmdds_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> 0 Then

f = txtScreen.Text

s = f

s = 1 / f

txtScreen.Text = s

txtScreen2.Text = s

Else

MsgBox "分子不能为零."

End If

End Sub

Private Sub cmden_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> "" Then

f = txtScreen.Text

s = f

s = Exp(s)

txtScreen.Text = s

txtScreen2.Text = s

End If

End Sub

Private Sub cmdEnd_Click()

Unload Form1

Unload Calc1

End Sub

Private Sub cmdEqual_Click(Index As Integer)

On Err GoTo e1

If p = "" Then

s = s

txtScreen.Text = txtScreen.Text

txtScreen2.Text = txtScreen.Text

ElseIf p = "+" Then

s = f + s

txtScreen.Text = s

txtScreen2.Text = s

s = s

ElseIf p = "-" Then

s = f - s

txtScreen.Text = s

txtScreen2.Text = s

s = s

ElseIf p = "*" Then

s = f * s

txtScreen.Text = s

txtScreen2.Text = s

s = s

ElseIf p = "^" Then

cmdSpr.Enabled = True

cmdXmY.Enabled = True

cmdCos.Enabled = True

cmdSin.Enabled = True

cmdMi.Enabled = True

cmdAbs.Enabled = True

cmdds.Enabled = True

cmdAtn.Enabled = True

cmdeN.Enabled = True

cmdLog.Enabled = True

cmdTan.Enabled = True

cmdspr2.Enabled = True

s = f ^ s

If s < 0 Then

txtScreen.Text = 0 & txtScreen & Text

txtScreen2.Text = 0 & txtScreen & Text

End If

txtScreen.Text = s

txtScreen2.Text = s

s = s

ElseIf p = "spr" Then

cmdSpr.Enabled = True

cmdXmY.Enabled = True

cmdCos.Enabled = True

cmdSin.Enabled = True

cmdMi.Enabled = True

cmdAbs.Enabled = True

cmdds.Enabled = True

cmdAtn.Enabled = True

cmdeN.Enabled = True

cmdLog.Enabled = True

cmdTan.Enabled = True

s = f ^ (1 / s)

txtScreen.Text = s

txtScreen2.Text = s

s = s

ElseIf p = "spr" And s = 0 Then

s = 1

If s < 0 Then

txtScreen.Text = 0 & txtScreen & Text

txtScreen2.Text = 0 & txtScreen & Text

End If

txtScreen.Text = s

txtScreen2.Text = s

s = s

ElseIf p = "/" And s <> 0 Then

s = f / s

If s < 0 Then

txtScreen.Text = 0 & txtScreen & Text

txtScreen2.Text = 0 & txtScreen & Text

End If

txtScreen.Text = s

txtScreen2.Text = s

s = s

Else

MsgBox "除数不能为零"

End If

If s < 0 Then

txtScreen.Text = 0 & txtScreen & Text

txtScreen2.Text = 0 & txtScreen & Text

End If

Exit Sub

e1:

If Err = 6 Then

MsgBox "数值溢出!"

End If

End Sub

Private Sub cmdGHH_Click()

s = s ^ 2

txtGH.Text = s

If txtGH.Text <> "" And txtGH.Text <> "0" Then

cmdGHH.Enabled = False

ElseIf txtGH.Text = "" And txtGH.Text = "0" Then

cmdGHH.Enabled = True

End If

End Sub

Private Sub cmdLog_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> "" Then

f = txtScreen.Text

s = f

s = Log(s)

txtScreen.Text = s

txtScreen2.Text = s

End If

End Sub

Private Sub cmdMi_Click()

On Err GoTo r1

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> "" Then

f = txtScreen.Text

s = f

s = s ^ 2

txtScreen.Text = s

txtScreen2.Text = s

End If

Exit Sub

r1:

If Err = 6 Then

MsgBox "数值溢出!"

End If

End Sub

Private Sub cmdMinus_Click()

If p = "" Then

txtScreen.Text = ""

p = "-"

f = s

s = 0

End If

End Sub

Private Sub cmdMutiply_Click(Index As Integer)

If p = "" Then

txtScreen.Text = ""

p = "*"

f = s

s = 0

End If

End Sub

Private Sub cmdPi_Click()

txtScreen.Text = "3.1415926535897932384626433832795"

f = 3.14159265358979

s = f

End Sub

Private Sub cmdPlus_Click()

If p = "" Then

txtScreen.Text = ""

p = "+"

f = s

s = 0

End If

End Sub

Private Sub cmdPoint_Click(Index As Integer)

If txtScreen.Text = "" Then

txtScreen = "0."

Else

txtScreen.Text = txtScreen.Text & "."

End If

End Sub

Private Sub cmdSave1_Click()

If txtScreen.Text = "" Then

MsgBox "请输入数字."

mnuA.Enabled = False

Else

a = txtScreen.Text

mnuA.Enabled = True

End If

End Sub

Private Sub cmdSave2_Click()

If txtScreen.Text = "" Then

MsgBox "请输入数字."

mnuB.Enabled = False

Else

b = txtScreen.Text

mnuB.Enabled = True

End If

End Sub

Private Sub cmdSave3_Click()

If txtScreen.Text = "" Then

MsgBox "请输入数字."

mnuC.Enabled = False

Else

c = txtScreen.Text

mnuC.Enabled = True

End If

End Sub

Private Sub cmdSave4_Click()

If txtScreen.Text = "" Then

MsgBox "请输入数字."

mnuD.Enabled = False

Else

d = txtScreen.Text

mnuD.Enabled = True

End If

End Sub

Private Sub cmdSin_Click()

If txtScreen.Text <> "" Then

f = txtScreen.Text

s = f

s = Sin(s)

txtScreen.Text = s

txtScreen2.Text = s

Else

MsgBox "请输入数字"

End If

End Sub

Private Sub cmdSpr_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text >= 0 Then

f = txtScreen.Text

s = f

s = s ^ (1 / 2)

txtScreen.Text = s

txtScreen2.Text = s

Else

MsgBox "底数不能小于零."

End If

End Sub

Private Sub cmdspr2_Click()

cmdSpr.Enabled = False

cmdXmY.Enabled = False

cmdCos.Enabled = False

cmdSin.Enabled = False

cmdMi.Enabled = False

cmdAbs.Enabled = False

cmdds.Enabled = False

cmdAtn.Enabled = False

cmdeN.Enabled = False

cmdLog.Enabled = False

cmdTan.Enabled = False

If txtScreen.Text <> "" Then

txtScreen.Text = ""

p = "spr"

f = s

s = 0

Else

cmdSpr.Enabled = True

cmdXmY.Enabled = True

cmdCos.Enabled = True

cmdSin.Enabled = True

cmdMi.Enabled = True

cmdAbs.Enabled = True

cmdds.Enabled = True

cmdAtn.Enabled = True

cmdeN.Enabled = True

cmdLog.Enabled = True

cmdTan.Enabled = True

MsgBox "请输入数字!"

End If

End Sub

Private Sub cmdTan_Click()

If txtScreen.Text = "" Then

MsgBox "无数字,无法计算"

ElseIf txtScreen.Text <> "" Then

f = txtScreen.Text

s = f

s = Tan(s)

txtScreen.Text = s

txtScreen2.Text = s

End If

End Sub

Private Sub cmdXmY_Click()

cmdSpr.Enabled = False

cmdCos.Enabled = False

cmdSin.Enabled = False

cmdMi.Enabled = False

cmdAbs.Enabled = False

cmdds.Enabled = False

cmdAtn.Enabled = False

cmdeN.Enabled = False

cmdLog.Enabled = False

cmdTan.Enabled = False

cmdspr2.Enabled = False

p = "^"

txtScreen.Text = ""

f = s

s = 0

End Sub

Private Sub Command1_Click()

If txtScreen.Text = "" Then

txtScreen.Text = "-"

Else

txtScreen.Text = "-" & txtScreen & Text

End If

End Sub

Private Sub Form_Load()

mnuA.Enabled = False

mnuB.Enabled = False

mnuC.Enabled = False

mnuD.Enabled = False

End Sub

Private Sub mnuA_Click()

If a <> "" Then

txtScreen.Text = a

s = a Or f = a

Else

MsgBox "数据导入时出错!存储器A中无数据"

End If

End Sub

Private Sub mnuARR_Click()

calcAbout.Show

End Sub

Private Sub mnuB_Click()

If b <> "" Then

txtScreen.Text = b

s = b Or f = a

Else

MsgBox "数据导入时出错!存储器B中无数据"

End If

End Sub

Private Sub mnuC_Click()

If c <> "" Then

txtScreen.Text = c

s = c Or f = c

Else

MsgBox "数据导入时出错!存储器C中无数据"

End If

End Sub

Private Sub mnuCopy_Click()

If Clipboard.GetFormat(vbCFText) = False Then

Clipboard.SetText txtScreen.SelText, vbCFText

mnuZT.Enabled = True

Else

mnuZT.Enabled = False

End If

End Sub

Private Sub mnuD_Click()

If d <> "" Then

txtScreen.Text = d

s = d Or f = d

Else

MsgBox "数据导入时出错!存储器D中无数据"

End If

End Sub

Private Sub mnuKX_Click()

mnuPT.Checked = False

mnuKX.Checked = True

Unload Form1

Calc1.Show

End Sub

Private Sub mnuPT_Click()

mnuKX.Checked = False

mnuPT.Checked = True

Unload Calc1

Form1.Show

End Sub

Private Sub mnuSC_Click()

a = ""

b = ""

c = ""

d = ""

mnuA.Enabled = False

mnuB.Enabled = False

mnuC.Enabled = False

mnuD.Enabled = False

End Sub

Private Sub mnuZT_Click()

txtScreen.SelText = Clipboard.GetText(vbCFText)

End Sub

3:电子计算器上面几个按键的用法CEMRCM-M+还有个ms和mc


知识要点归纳:

部分标准型具备数字存储功能,它包括四个按键:MRC、M-、M+、MU.键入数字后,按M+将数字读入内存,此后无论进行多少步运算,只要按一次MRC即可读取先前存储的数字,按下M-则把该数字从内存中删除,或者按二次MRC.MU则为利率计算,使用方法不详.

清除输入键(CE):在数字输入期间按下此键将清除输入寄存器中的值并显示"0".

4:【x^y在计算器里的用法是?】


知识要点归纳:

x的y次方.比如要计算6的8次方,那么按键顺序是6→x^y→8→=

5:【关于科学计算机的用法,我的科学计算机中有一个模块,我不知道怎么用,说明书上也没有,是TENTE&#8482;牌的.开机(ON)→MODE(两下)→EQN→右键→Degree?在Degree?下有两个选项2,3.按2后,会出现(输】


知识要点归纳:

EQN是解方程模式.

下面的两个选项可能是分别用来解

ax^2+bx+c=0和ax^2+bx+c=d或类似类型的方程.

猜你喜欢:

1:普通计算器使用方法

提示:计算器和计算机类似,也有一个存储器用于存储数据,如果你有说明书会更明了的 M+:是计算结果并加上已经储存的数;中断数字输入. M-:从存储器内容中减去当前显示值;中断数字输入. MRC:第一次按下此键将调用存储器内容,第二次按下时清除存储器内容....

2:计算器函数的使用方法

提示:m+加存 m-减存 mc清除存数 mr取出存数 ms存入数据 MC 清除存储器中的数据,如果存储器中有数据,MC上方的小灰框中会有个M标记 MR 将存储的数据调到显示栏中 MS 存储当前显示栏中的值 M+ 将当前显示栏中的数与储存的数据相加,结果作为新的储存数...

3:计算器上的M+,M-是怎么用啊?

提示: M+就是在原有存储信息的基础上进行加法运算。 M-就是在原有存储信息的基础上进行减法运算。 M+、M-键可以分别记忆每次运算后的结果,MR键可以显示记忆的最后结果。 M就是memory的简写, 意为储存即为最后一步存储的信息。 使用方法: (1) 输入...

4:财务计算器使用方法及技巧

提示:一、 货币时间价值菜单操作 该菜单操作涉及五个变量,分别是期数(n),利率(i) ,现值(PV),年金(PMT) 和终值(FV)。如果知道其中的四个,就可以计算出另外一个。 另外,还有几个其它的重要指标需要设定:期初或期末年金(g BEG或g END),每年复...

5:计算器使用方法

提示:M+是计算结果并加上已经储存的数;M-是计算结果并用已储存的数字减去目前的结果;MR是读取储存的数据;MC是清除储存数据;AC,CE归零是有一个是清除现有数据重新输入,另一个是清除全部数据结果和运算符. 例如,计算5÷(4+2)。步骤如下: 按“4”...

上一篇:智商情商

下一篇:处方药和非处方药