Home30 Days Of CodeHackerRank Day 1 : Data types 30 days of code solution

HackerRank Day 1 : Data types 30 days of code solution

In this HackerRank Day 1 : Data types 30 days of code solution , we need to develop a program that accepts an integer, double,  and string and prints the sum of them in each line as an output screen.

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

  1. Declare 3 variables: one of type int, one of type double, and one of type String.
  2. Read 3 lines of input from stdin (according to the sequence given in the Input Format section below) and initialize your 3 variables.
  3. Use the + operator to perform the following operations:
    1. Print the sum of i plus your int variable on a new line.
    2. Print the sum of d plus your double variable to a scale of one decimal place on a new line.
    3. Concatenate s 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 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!.

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.

How to Use this Solution

Visit to the hacker rank 30 days of code challenge page and open Day 1 “Data Types” problem, in the below solution code there is a code between /* solution starts from here */ and /* solution ends here */ just copy the code and paste it to the hacker rank editor and click on submit button.

HackerRank Day 1 : Data types 30 days of code solution

Data types HackerRank Solution in C

#define MAX_BUFFER 255
    // Declare second integer, double, and String variables.
    int si;
    double dd;
    char *buff = malloc(MAX_BUFFER);
    if (buff == NULL) {
        printf("Memory error\n");
        return 1;
    }
    // Read and save an integer, double, and String to your variables.
    if ( fgets(buff, MAX_BUFFER, stdin) != NULL ) {
        sscanf(buff, "%d", &si);
        printf("%d\n", i + si);
    }
    if ( fgets(buff, MAX_BUFFER, stdin) != NULL ) {
        sscanf(buff, "%lf", &dd);
        printf("%.1f\n", d + dd);
    }
    if ( fgets(buff, MAX_BUFFER, stdin) != NULL ) {
         printf("%s%s\n", s, buff);
    }
    
    // Print the sum of both integer variables on a new line.
    // Print the sum of the double variables on a new line.
    
    // Concatenate and print the String variables on a new line
    // The 's' variable above should be printed first.

Data types HackerRank Solution in C ++

 int a;
    double b;
    string c;
    cin >> a;
    cin >> b;
    getline(cin, c);
    getline(cin, c);
    cout << (a + i) << endl;
    cout << setprecision(1) << fixed << (b + d) << endl;
    cout << (s + c) << endl;

Data types HackerRank Solution in Java

  // 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();
    s2=scan.nextLine();
    // Print the sum of both integer variables on a new line.
    System.out.println(i+i2);
    
    // Print the sum of the double variables on a new line.
    System.out.println(d+d2);
    // Concatenate and print the String variables on a new line
    // The 's' variable above should be printed first.
    System.out.println(s+s2);

Data types HackerRank Solution Python 3

# Declare second integer, double, and String variables.
# Read and save an integer, double, and String to your variables.
j = int(input())
e = float(input())
t = input()
# Print the sum of both integer variables on a new line.
print(i+j)
# Print the sum of the double variables on a new line.
print(d+e)
# Concatenate and print the String variables on a new line
print(s+t)
# The 's' variable above should be printed first.

Data types HackerRank Solution Javascript

   // Declare second integer, double, and String variables.
    var i2
    var d2
    var s2
    // Read and save an integer, double, and String to your variables.
    i2 = Number(readLine())
    d2 = parseFloat(readLine())
    s2 = readLine()
    
    // Print the sum of both integer variables on a new line.
    process.stdout.write(i + i2 + '\n');
    
    // Print the sum of the double variables on a new line.
    process.stdout.write((d + d2).toFixed(1) + '\n');
    // Concatenate and print the String variables on a new line
    // The 's' variable above should be printed first.
    process.stdout.write(s + s2 + '\n');

NEXT : Hackerrank Day 2 : Operators

30 Days of Code HackerRank Solutions List – Day 0 to Day 29


Read More –

RELATED ARTICLES

Most Popular

- Advertisment -

Categories