0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【PHP】 paizaスキルチェック 足し算 解答

Posted at

問題はこちら

解答

answer.php
<?php
   #入力される値を変数に保存する
   $input = fgets(STDIN);
   $numbers = explode(" ", trim($input));
   $a = $numbers[0];
   $b = $numbers[1];
   #aとbの足し算
   $result = $a + $b;
   #答えの出力
   echo $result;
?>

Point

今回の問題では、変数a,変数bが半角スペースで区切られて入力されるという条件があります。fgets関数は一行読み取るという仕様ですので、読み取ったあとそれを分割する必要があります。上記のコードでは、explode関数を使用してスペースで分割しそれぞれの数値を変数に格納しています。

参照

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?