任务
名为 firstInteger、firstDecimal 和 firstString 的变量声明为你在下面的编辑器中。您必须使用 + 运算符来执行以下操作序列:
- 将 secondInteger 转换为整数(Number 类型),然后与 firstInteger 相加,并在新行打印结果使用console.log。
- 将secondDecimal转换为浮点数(Number类型),然后与firstDecimal相加并打印结果使用 console.log 换行。
- 使用 console.log 在新行上打印 firstString 和 secondString 的串联。请注意,必须先打印 firstString。
约束
输入格式
数据类型 |
参数 |
描述 |
标题>
字符串 |
Data Type |
Parameter |
Description |
string |
secondInteger |
The string representation of an integer you must sum with firstInteger. |
string |
secondDecimal |
The string representation of a floating-point number you must sum with firstDecimal. |
string |
secondString |
A string of one or more space-separated words you must append to secondString. |
第二个整数
|
必须与 firstInteger 求和的整数的字符串表示形式。 |
字符串 |
- 第二个十进制
|
浮点数的字符串表示形式,必须与 firstDecimal求和。
|
字符串 |
第二字符串
|
必须附加到 secondString 的由一个或多个空格分隔的单词组成的字符串。 |
表>
输出格式
打印以下三行输出:
在第一行,打印 firstInteger 和 secondInteger 的整数表示的总和。
在第二行,打印
firstDecimal
和 secondDecimal
的浮点表示形式的总和。
12
4.32
is the best place to learn and practice coding!
登录后复制
在第三行,打印 firstString
与
16
8.32
HackerRank is the best place to learn and practice coding!
登录后复制
secondString
连接。您必须在 -
secondString. 之前打印
样本
-
输入
输出
解释
当我们将整数
4
和12相加时,我们得到整数16。
当我们将浮点数 4.0 和 4.32 相加时,我们得到 8.32。当我们将 HackerRank 与 is the best place to learn andpracticalcoding! 连接起来时,我们得到 HackerRank is the best place to learn andpracticingcoding!.
解决方案
数据类型
连接
LinkedIn GitHub
以上是日数据类型解决方案的详细内容。更多信息请关注PHP中文网其他相关文章!