answersLogoWhite

0

What else can I help you with?

Related Questions

299 plus 1111?

The total sum is: 1410


What is The sum of two consecutive integers is 299?

168167


What is the sum of 243 and 56?

243+56 = 299


What is the sum of the prime numbers between 30 and 50?

199 31+37+41+43+47=199


What is the sum of odd numbers from 1-199?

200


What is the sum of the prime factors of two to the 16 powers - 1?

The sum of the factors of 2^16 - 1 = 65535 is 299.


What twin prime number whose sum is 204?

How about: 199+5 = 204


What is the difference between sum and difference?

sum is addition difference is subtraction


If the sum of 3 consecutive numbers is 600 what are the other numbers?

199, 200, 201


What is the sum of all prime between numbers 1 and 400?

The sum of all prime between numbers 1 and 400 (2 through 399) is 13,887.


What is the sum and the difference of 45.78 and13.76?

the sum is 59.54 and the difference is 32.02.


Write a program that will accept two numbers and find their sum anddifferences. If the sum is more than the difference, display the sum otherwisedisplay the difference. Pascal programming?

program SumAndDifference; var num1, num2, sum, difference: integer; begin write('Enter first number: '); read(num1); write('Enter second number: '); read(num2); sum := num1 + num2; difference := num1 - num2; if sum > difference then written('The sum is greater: ', sum) else written('The difference is greater: ', difference); end. This program will prompt the user to enter two numbers, calculate their sum and difference, and then compare the two values. If the sum is greater than the difference, it will display the sum; otherwise, it will display the difference.