Ask Question
24 October, 07:59

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

+3
Answers (1)
  1. 24 October, 11:22
    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?
Get 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 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