Day 1: Data Types | 30 Days of Code | Hacker Rank Solution

Day 1: Data Types | 30 Days of Code | Hackerrank Solution. Hello coders, what's up! So in today tutorial we are going to give you the solution of Day

Hello coders, what's up! So in today tutorial we are going to give you the solution of Day 1: Data Types problem which is the Hackerrank second day problem.

This problem mainly focuses on different types of data types like integer, double and string data type which is use in coding.

This is a simple beginners level problem. If you don't know how to solve it, then there is nothing to worry about because today we will be explaining in a very simple and easy way.

So, without further ado let's jump into the question.

Day 1: Data Types | 30 Days of Code

Table Of Contents 👊

Objective 

Today we're discussing data types.

Task 

Complete the code in the editor below. The variables i, d, and s 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 output 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:

  • Print the sum of i plus your int variable on a new line.
  • Print the sum of d plus your double variable to a scale of one decimal place on a new line.
  • 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 an 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 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.

        Solution - Day 1: Data Types 

        Python 3 

        i = 4
        d = 4.0
        s = 'HackerRank '
        # Declare second integer, double, and String variables.
        a = 0
        b = 0
        # Read and save an integer, double, and String to your variables.
        a = int(input())
        b = float(input())
        string = input()
        # Print the sum of both integer variables on a new line.
        print( a + i )
        # Print the sum of the double variables on a new line.
        print( b + d )
        # Concatenate and print the String variables on a new line
        # The 's' variable above should be printed first.
        print( s + string)
        Day 1 Data Types Hackerrank Solution
        Data Types - HackerRank Solution

        Day 1 Data Types HackerRank Solution
        Data Types - Result

        Conclusion

        That was all in the solution, I hope you all have understand it. If you have any problem regarding the problem (Day 1: Data Types), feel free to contact in the Comment section.

        Disclaimer: The above question is generated by HackerRank but the solution is provided by Sloth Coders.

        Sloth Coders is a Learning Platform for Coders, Programmers and Developers to learn from the basics to advance of Coding of different langauges(python, Java, Javascript and many more).

        Post a Comment