BASHA TECH
[HackerRank][Python] Data Types 본문
Task
Complete the code in the editor below. The variables , , and are already declared and initialized for you. You must:
- Declare 3 variables: one of type int, one of type double, and one of type String.
- Read 3 lines of input from stdin (according to the sequence given in the Input Format section below) and initialize your 3 variables.
- 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 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.
# Given variables
i = 4
d = 4.0
s = 'HackerRank '
# Declare and read new variables
j = int(input())
e = float(input())
t = input()
# Print sums and concatenation
print(i + j)
print("{:.1f}".format(d + e))
print(s + t)
The code declares and initializes the given variables i, d, and s. It then reads input from the user using the input() function and initializes new variables j, e, and t.
Next, it performs the required operations using the given variables and the new variables and prints the results to standard output using the print() function. The format string "{:.1f}" is used to format the result of the addition of d and e to one decimal place. The + operator is used to concatenate the strings s and t.
'Activity > Coding Test' 카테고리의 다른 글
[HackerRank][Python] Intro to Conditional Statements (0) | 2023.04.11 |
---|---|
[HackerRank][Python] Operators (0) | 2023.04.11 |
[HackerRank][Python] (0) | 2023.04.11 |
[HackerRank][Java] Simple Array (0) | 2023.04.07 |
[Level 1][Java] 로또의 최고 순위와 최저 순위 (0) | 2022.09.05 |