Ask Question
25 February, 03:54

write a c program that captures two integers from the keyboard and prints the absolute value between the two integers

+4
Answers (1)
  1. 25 February, 04:14
    0
    console. writeLine ("Enter a integer")

    int num1 = console. readline ();

    console. writeline ("Enter another integer")

    int num2 = console. readline ();

    int difference = num1 - num2;

    console. Writeline ("The difference between the numbers is"+difference)

    If you copy paste this, you will get an error, type it in line by line
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “write a c program that captures two integers from the keyboard and prints the absolute value between the two integers ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers