卡西欧 fx-9860G 帮助
我需要帮助为我的 casio fx-9860g 编写自定义函数,
我之前在 Texas Calc 中已经这样做过,但我不确定是否有一种方法可以使用 casio 计算器...比如说,例如,我想编写一个简单的函数,例如所以:
public int triple(int x)
{
return 3x;
}
我知道这是一个非常简单的函数,但我想要一种存储一些公式的方法,这样我就可以快速计算东西,而不必重新重写公式......提前致谢。
I need help writing custom functions for my casio fx-9860g
I have done this before in my Texas Calc but Im not sure there is a way to it with casio calculators... say, for instance, I want to write a simple function like so:
public int triple(int x)
{
return 3x;
}
I understand this is quite a simple function but I want a way to store some formulas so I can quickly calculate stuff without having to rewrite the formulas all over again.. thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
卡西欧basic没有你想要的“功能”。对于简单的函数,您可以使用复制/粘贴,而不是使用函数进行抽象。 (这种冗余比您想象的要好)
对于较大的子例程,您可以将它们编写为程序文件并调用它们。请参阅手册中的prog和return命令。
Casio basic doesn't have 'functions' like you want. For simple functions you use copy/paste, rather than abstract using functions. (This redundancy is better than you'd think)
For larger sub-routines you can write those as a program file and call them. See the prog and return commands in the manual.