a=“你好”,b=“再见”,c=a*b 然后打印 c?

发布于 2024-11-15 05:55:50 字数 78 浏览 1 评论 0原文

我遇到一个这样的问题

a="hello", b="bye", c=a*b

那么 print c 的答案是什么?

I came across one question like this

a="hello", b="bye", c=a*b

then what will the anwser of print c?

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

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

发布评论

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

评论(3

你的往事 2024-11-22 05:55:50

这取决于 * 运算符在字符串数据类型上的实现。这通常取决于您使用的编程语言。在我知道的大多数静态类型语言中,这个运算符不是在字符串上定义的。

That depends on the implementation of the * operator on string data types. And that usually depends on the programming language you use. In most statically typed languages I know, this operator is not defined on strings.

深陷 2024-11-22 05:55:50

在 JavaScript 中,c 的值为 NaN。

In JavaScript, the value of c will be NaN.

甩你一脸翔 2024-11-22 05:55:50

我认为这是一个棘手的问题。您不能将一个字符串与另一个字符串相乘。我认为任何语言都不允许这样做。

It's a trick question, I think. You can't multiply a string with another string. I don't think any language allows this.

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