简单的 C# 初学者问题

发布于 2024-10-21 02:38:04 字数 210 浏览 1 评论 0原文

我正在尝试制作一个简单的计算器。我的数字下方出现蓝线,并出现错误“预期方法名称”,

我希望你们能帮助我解决菜鸟提出的简单问题。

finalCmb = .25(1.3(txtAtt.Text+txtStr.Text)+txtDef.Text+txtHp.Text+(.5(txtPray.Text))+(.5(txtSum.Text)));

I am trying to make a simple calculator. I am getting blue line under my numbers with the error "Method Name Expected"

I was hopeing you guys could help me out with my simple question from a noob.

finalCmb = .25(1.3(txtAtt.Text+txtStr.Text)+txtDef.Text+txtHp.Text+(.5(txtPray.Text))+(.5(txtSum.Text)));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

韶华倾负 2024-10-28 02:38:04
  1. 您必须手动放置乘法运算符。没有括号乘法。

    25(1.3(te... 应该是 25 * (1.3 * (te...

  2. 将字符串转换为数字是个好主意。

    txtStr.TextDouble.Parse(txtStr.Text)

  1. You have to manually place multiplication operators. There is no bracket multiplication.

    25(1.3(te... should be 25 * (1.3 * (te...

  2. Converting strings to numbers would be a good idea.

    txtStr.Text to Double.Parse(txtStr.Text)

如梦亦如幻 2024-10-28 02:38:04

您需要输入星号来进行乘法运算。

You need to put the asterisk symbol for multiplication.

皓月长歌 2024-10-28 02:38:04

你的语法是错误的。当您执行此操作时,编译器认为您由于左括号而试图调用一个方法,

.25(1.3 ...

我不确定您实际上想用它来完成什么,但这没有意义。我建议花更多时间学习基础知识。

Your syntax is wrong. The compiler thinks that you are trying to call a method due to the opening parentheses when you do this

.25(1.3 ...

I'm not sure what you are actually trying to accomplish with that, but it doesn't make sense. I would suggest spending some more time learning the basics.

一影成城 2024-10-28 02:38:04
finalCmb = .25 * (1.3 * ((double)txtAtt.Text + (double)txtStr.Text)+(double)txtDef.Text+ (double)txtHp.Text+ (.5 * ((double)txtPray.Text)) + (.5 * ((double)txtSum.Text)));
finalCmb = .25 * (1.3 * ((double)txtAtt.Text + (double)txtStr.Text)+(double)txtDef.Text+ (double)txtHp.Text+ (.5 * ((double)txtPray.Text)) + (.5 * ((double)txtSum.Text)));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文