Step 1: Start
Step 2: Declare variables num1, num2 and sum.
Step 3: Read values for num1, num2.
Step 4: Add num1 and num2 and assign the result to a variable sum.
Step 5: Display sum
Step 6: Stop
#include
int main()
{
int num1,num2,sum;
printf("\n Enter the first number to be added: ");
scanf("%d",&num1);
printf("\n Enter the second number to be added: ");
scanf("%d",&num2);
sum = num1 + num2;
printf("\n The sum of two numbers is: %d",sum);
return 0;
}
Answer:
I think I need your ip for thissssssssssssssssss
It should be Money market or CD. I'm leaning towards Money Market account.
Answer:
range
Explanation:
range(num1, num2) returns the numbers from num1 up to but not including num2.
Example: range(1, 4) will return the numbers 1, 2, 3.
Hope this helps :)
Answer:
TRUE
Explanation:
The while loop is used to run the block of statement again and again until condition is TRUE. if condition false program terminate the loop and execute the next of while statement.
syntax:
initialize;
while(condition)
{
statement;
increment/decrement;
)
when condition is TRUE, the block of statement execute again and again.