forked from portfoliocourses/c-example-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_two_numbers.c
39 lines (30 loc) · 1015 Bytes
/
add_two_numbers.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
*
* Program: Add Two Numbers From User Input
*
* Description: A C program to add two numbers from user input.
*
* YouTube Lesson: https://www.youtube.com/watch?v=1F8F4Ma1btM
*
* Author: Kevin Browne @ https://portfoliocourses.com
*
*******************************************************************************/
#include <stdio.h>
int main()
{
// declare 3 variables, 2 store the numbers, and sum to store the sum
double number1, number2, sum;
// prompt the user to enter the first number
printf("Number 1: ");
// store the double value entered into the number1 variable
scanf("%lf", &number1);
// prompt the user to enter the second number
printf("Number 2: ");
// store the double value entered into the number2 variable
scanf("%lf", &number2);
// sum the two numbers and store the result into sum
sum = number1 + number2;
// output the result
printf("Sum: %f\n", sum);
return 0;
}