タスク
firstInteger、firstDecimal、および firstString という名前の変数が宣言されています以下のエディターにいます。次の一連の操作を実行するには、+ 演算子を使用する必要があります:
-
secondInteger を整数 (数値型) に変換し、それを 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 と合計する必要がある整数の文字列表現。 |
文字列 |
- 秒 10 進数
|
firstDecimal と合計する必要がある浮動小数点数の文字列表現。
|
文字列 |
秒文字列
|
スペースで区切られた 1 つ以上の単語の文字列を secondString に追加する必要があります。 |
出力形式
次の 3 行の出力を印刷します。
最初の行に、firstInteger と secondInteger の整数表現の合計を出力します。
2 行目に、
firstDecimal
と secondDecimal
の浮動小数点表現の合計を出力します。
12
4.32
is the best place to learn and practice coding!
3 行目に、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 and practicecoding! と連結すると、HackerRank is the best place to learn and practicecoding! となります。
解決
データ型
接続する
LinkedIn GitHub
以上が日のデータ型のソリューションの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。