Ask Question
19 December, 17:43

Assume you want to write a code to calculate the addition of two numbers digit by digit. Provide the running time for your algorithm, assuming the inputs are two n-digit numbers. Explain your answer

+4
Answers (1)
  1. 19 December, 18:33
    0
    Using Python programming language

    Explanation:

    1. I defined a function add and passed in two parameters (a, b).

    2. In the block of the function, I added the two numbers and printed the result.

    3. I decided to use a function so that the program is re-usable and can accept various inputs.

    Find the code below. (# are used for comments)

    #Addition of numbers

    def add (a, b):

    print (a+b)

    #Test Cases

    add (2,4.5) #Result=6.5

    add (10,290) #Result=300

    add (2.567,4.58) #Result=7.147
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Assume you want to write a code to calculate the addition of two numbers digit by digit. Provide the running time for your algorithm, ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers