Day 1: Data Types|| hackerrank || 30 days of code || programming_info

Objective
Today, we're discussing data types. Check out the Tutorial tab for learning materials and an instructional video!

Task
Complete the code in the editor below. The variables , and  are already declared and initialized for you. You must:

  1. Declare  variables: one of type int, one of type double, and one of type String.
  2. Read  lines of input from stdin (according to the sequence given in the Input Format section below) and initialize your  variables.
  3. Use the  operator to perform the following operations:
    1. Print the sum of  plus your int variable on a new line.
    2. Print the sum of  plus your double variable to a scale of one decimal place on a new line.
    3. Concatenate  with the string you read as input and print the result on a new line.

Note: If you are using a language that doesn't support using  for string concatenation (e.g.: C), you can just print one variable immediately following the other on the same line. The string provided in your editor must be printed first, immediately followed by the string you read as input.

Input Format

The first line contains an integer that you must sum with .
The second line contains a double that you must sum with .
The third line contains a string that you must concatenate with .

Output Format

Print the sum of both integers on the first line, the sum of both doubles (scaled to  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  and , we get the integer .
When we sum the floating-point numbers  and , we get .
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!.

You will not pass this challenge if you attempt to assign the Sample Case values to your variables instead of following the instructions above and reading input from stdin.

Now here's the solution in C/ C++/ JAVA/ JS:-

code snippet:
using c language:

    int j;
    double l;
    char m[100];// this is not scalable for input of unknown size
    // Read inputs from stdin
    scanf("%d",&j);
    scanf("%lf",&l);
    scanf("%*[\n] %[^\n]", m); 
   // Print outputs to stdout
    printf("%d\n",i+j);
    printf("%0.1lf\n",(l+d));
    printf("%s%s",s,m);
    return 0;
}

using c++ language:

// Declare second integer, double, and String variables.

int i2;

double d2;

string s2;

// Read and save an integer, double, and String to your variables.

cin >> i2;

cin >> d2;

getline(cin >> ws, s2); // eat whitespace

// Print the sum of both integer variables on a new line.

cout << i + i2 << endl;

// Print the sum of the double variables on a new line.

cout << fixed << setprecision(1) << d + d2 << endl;

// Concatenate and print the String variables on a new line

// The 's' variable above should be printed first.

cout << s + s2 << endl;

using java language:

import java.util.*;

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 i2;

        double d2;

        String s2;

        /* Read and save an integer, double, and String to your variables.*/

        i2 = scan.nextInt();

        d2 = scan.nextDouble();

        scan.nextLine(); // read the rest of the line of input (newline character after the double token).

        s2 = scan.nextLine();

using javascript(js) language:

// Declare second integer, double, and String variables.

// Read and save an integer, double, and String to your variables.

var i2 = +(readLine());

var d2 = +(readLine());

var s2 = readLine();

// Print the sum of both integer variables on a new line.

console.log(i + i2);

// Print the sum of the double variables on a new line.

console.log((d + d2).toFixed(1));

// Concatenate and print the String variables on a new line

// The 's' variable above should be printed first.

console.log(s + s2);









Share:

No comments:

Post a Comment

Translate

Recommended platforms

  1. codechef
  2. hackerrank
  3. codeforces
  4. leetcode
  5. hackerearth

Popular Posts

programming_info. Powered by Blogger.

Blog Archive

Recent Posts

other platforms

  • geeks for geeks
  • w3schools
  • codepen
  • skillshare
  • udemy

Pages

reader support Support