-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package main | ||
|
||
import ( "fmt" ) | ||
|
||
func main() { // declare variables var num1, num2 int var result int | ||
|
||
// get user input | ||
fmt.Print("Enter first number: ") | ||
fmt.Scanln(&num1) | ||
|
||
fmt.Print("Enter second number: ") | ||
fmt.Scanln(&num2) | ||
|
||
// perform addition | ||
result = num1 + num2 | ||
|
||
// display result | ||
fmt.Printf("The sum of %d and %d is %d\n", num1, num2, result) | ||
|
||
// check if result is even or odd | ||
if result%2 == 0 { | ||
fmt.Printf("The sum is even\n") | ||
} else { | ||
fmt.Printf("The sum is odd\n") | ||
} | ||
} |