Ask Question
18 June, 20:21

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

+4
Answers (1)
  1. 18 June, 23:58
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers