Day 1: Data Types Hackerrank Solution
Do Check My Explanation Video On Following Code:
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!
Code:
import java.io.*;import java.util.*;import java.text.*;import java.math.*;import java.util.regex.*;
public class Solution { public static void main(String[] args) { int i = 4; double d = 4.0; String s = "HackerRank "; Scanner scan = new Scanner(System.in);
/* Declare second integer, double, and String variables. */ int j = scan.nextInt(); double d2 = scan.nextDouble(); scan.nextLine(); String s2 = scan.nextLine(); /* Read and save an integer, double, and String to your variables.*/ // Note: If you have trouble reading the entire String, please go back and review the Tutorial closely. /* Print the sum of both integer variables on a new line. */ System.out.println(i+j);//4+12 = 16 /* Print the sum of the double variables on a new line. */ System.out.println(d+d2);//4.0+4.0=8.0 /* Concatenate and print the String variables on a new line; the 's' variable above should be printed first. */ System.out.println(s+s2);//HackerRank scan.close(); }}
Comments
Post a Comment