Tuesday, July 23, 2019

Legal Age Checker Using Switch Statement Using Go

Write a program using a switch statement that will ask the person to give their age. The program will check and determine whether the given age of the person is already considered as an adult or still a minor.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com



Sample Program Output


Program Listing

/* legal_age.go
Authors
Mr. Jake R. Pomperada
Mr. Rollyn M.  Moises
Mr. Sunday V. Latergo
Date : July 23, 2019  Tuesday 9:01 AM
 */

package main

import (
"bufio"
"fmt"
"os"
"strings"
)

func main() {

consoleReader := bufio.NewReader(os.Stdin)
var age int32

fmt.Print("\n")
fmt.Print("\tLegal Age Checker Using Switch Statement")
fmt.Print("\n\n")
fmt.Print("\tWhat is your name? : ")
user_name, _ := consoleReader.ReadString('\n')
fmt.Print("\tWhat is your age?   : ")
  fmt.Scanf("%d",&age);
fmt.Print("\n")
name_display := strings.ToUpper(user_name)
switch {
case  age >= 18 :
fmt.Println("\tHello",name_display,".")
fmt.Println("\tAt the age  of ",age, " years old you are already an Adult.")
default :
fmt.Println("\tHello ",name_display,".")
fmt.Println("\tAt the age  of ",age, "you are still a  Minor.")
}
}


No comments:

Post a Comment