Error
|
|
---|---|
@Ibrahim Nash | 6420 |
@blackshadows | 6376 |
@mb1973 | 5578 |
@Quandray | 5231 |
@akhayrutdinov | 5111 |
@saiujwal13083 | 4510 |
@sanjay05 | 3762 |
@kirtidee18 | 3673 |
@marius_valentin_dragoi | 3522 |
@sushant_a | 3459 |
@verma_ji | 3412 |
Complete Leaderboard | |
|
|
@codersgroup18 | 714 |
@Manikanta punnam | 579 |
@sriramgoparaju99 | 532 |
@yashkaril4 | 517 |
@praveenbgp6 | 517 |
@prankursharma31 | 489 |
@rdakka | 465 |
@sonamnigam1999 | 441 |
@purohitmn02 | 427 |
@sonamkumari63928 | 426 |
@ShubhankarPandey | 419 |
Complete Leaderboard |
Write a program to display the floating number a with a given precision value b.
Example 1:
Input: a = 4.567, b = 2
Output:
4.57
Explanation: Rounding a to two decimal
places.
Example 2:
Input: a = 8.92, b = 3
Output:
8.920
Explanation: Rounding a to three decimal
places.
Your Task:
You dont need to read input. Complete the function speedBreaker() which takes a and b as input parameters and print the floating number a with a given precision value b.
Expected Time Complexity: O(1)
Expected Auxiliary Space: O(1)
Constraints:
1 ≤ b ≤ 15
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes