Latest news:
Sahih al-Bukhari (সহীহ বুখারী) is a free Hadith application for android. This application is advertisement free. Download now https://play.google.com/store/apps/details?id=com.akramhossin.bukharisharif
Task:
Input Format:
The first line contains an integer that you must sum with i.
The second line contains a double that you must sum with d.
The third line contains a string that you must concatenate with s.
Output Format:
Print the sum of both integers on the first line, the sum of both doubles (scaled to 1 decimal place) on the second line,
and then the two concatenated strings on the third line.
Sample Input
12
4.0
is the best place to learn and practice coding!
Sample Output
16
8.0
HackerRank is the best place to learn and practice coding!
Explanation:
When we sum the integers 4 and 12, we get the integer 16.
When we sum the floating-point numbers 4.0 and 4.0, we get 8.0 .
When we concatenate HackerRank with is the best place to learn and practice coding!, we get HackerRank is the best place to learn and practice coding!.
PHP Solution:
$handle = fopen ("php://stdin","r");
$i = 4;
$d = 4.0;
$s = "HackerRank ";
// Declare second integer, double, and String variables.
$counter = 0;
while (! feof ($handle))
{
$counter++;
if($counter===1){
$i+=(int) fgets($handle);
}
if($counter===2){
$d+=(double) fgets($handle);
}
if($counter===3){
$s.=(string) fgets($handle);
}
}
// Read and save an integer, double, and String to your variables.
// Print the sum of both integer variables on a new line.
print $i;
print "\r\n";
// Print the sum of the double variables on a new line.
print number_format($d,1);
print "\r\n";
// Concatenate and print the String variables on a new line
// The 's' variable above should be printed first.
print $s;
fclose($handle);
Views : 1168