VB.NET相当于excel的商函数

发布于 2024-11-09 03:30:14 字数 77 浏览 0 评论 0原文

VB.NET 是否有像 Excel 中那样获取商的函数?

Quotient(12, 6)

Does VB.NET have a function to get the quotient like you can in excel.

Quotient(12, 6)

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

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

发布评论

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

评论(3

清风夜微凉 2024-11-16 03:30:14

不管我在评论中写了什么,对于它们来说,整数除法都是使用相同的运算符执行的,即 \ (请注意,它不是常规斜杠,而是 back削减)。

5\2 => evaluates to an integer 2
5/2 => evaluates to a double 2.5

(请注意,此处的返回类型适用于整数操作数,但它与操作数的类型不同)

有关这些运算符的 VB.NET 版本的详细信息,请参阅:

Despite what I wrote in the comment, for both of them the integer division is performed with the same operator, i.e. \ (notice that it's not a regular slash, but a backslash).

5\2 => evaluates to an integer 2
5/2 => evaluates to a double 2.5

(notice that the return type here is for Integer operands, but it varies from the operands' type)

For more information on the VB.NET version of these operators see:

你与清晨阳光 2024-11-16 03:30:14
quotient = 12 \ 6 ' filler filler filler
quotient = 12 \ 6 ' filler filler filler
一向肩并 2024-11-16 03:30:14

在没有等效 VBA 的情况下,您始终可以使用 WorksheetFunction,例如:

WorksheetFunction.Quotient(Arg1, Arg2)

In a case when there is no VBA equivalent, you can always use WorksheetFunction, for example:

WorksheetFunction.Quotient(Arg1, Arg2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文