Skip to content

Commit

Permalink
Create test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
skakarl2 authored Oct 31, 2024
1 parent 5de84b1 commit 9782fb8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions test.go
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")
}
}

0 comments on commit 9782fb8

Please sign in to comment.