mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-07-21 05:11:22 +07:00
day 13
This commit is contained in:
29
Days/Go/day13_example1.go
Normal file
29
Days/Go/day13_example1.go
Normal file
@ -0,0 +1,29 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
|
||||
const DaysTotal int = 90
|
||||
var remainingDays uint = 90
|
||||
challenge := "#90DaysOfDevOps"
|
||||
|
||||
fmt.Printf("Welcome to the %v challenge.\nThis challenge consists of %v days\n", challenge, DaysTotal)
|
||||
|
||||
var TwitterName string
|
||||
var DaysCompleted uint
|
||||
|
||||
// asking for user input
|
||||
fmt.Println("Enter Your Twitter Handle: ")
|
||||
fmt.Scanln(&TwitterName)
|
||||
|
||||
fmt.Println("How many days have you completed?: ")
|
||||
fmt.Scanln(&DaysCompleted)
|
||||
|
||||
// calculate remaining days
|
||||
remainingDays = remainingDays - DaysCompleted
|
||||
|
||||
fmt.Printf("Thank you %v for taking part and completing %v days.\n", TwitterName, DaysCompleted)
|
||||
fmt.Printf("You have %v days remaining for the %v challenge\n", remainingDays, challenge)
|
||||
fmt.Println("Good luck")
|
||||
}
|
Reference in New Issue
Block a user