Answer to Question #44890 in C for erico fire

Question #44890
write a c program that prompts a user to enter two numbers ,the system must display the summation of the number?
1
Expert's answer
2014-08-13T11:10:12-0400
#include <stdio.h>
#include <stdlib.h>
//main function
int main(){
double summation;//variable for sum
double firstnumber;
double secondnumber;
//prompt user to enter first number
printf("Enter first number: ");
//read first number
scanf("%lf",&firstnumber);
//promt user to enter second number
printf("Enter second number: ");
//read second number
scanf("%lf",&secondnumber);
summation=firstnumber+secondnumber;//add
//the system must display the summation of the number
printf("The summation of the number = %.3f\n",summation);
system("PAUSE");//delay
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS