Showing posts with label Legal Age Checker Using Function Statement in Golang. Show all posts
Showing posts with label Legal Age Checker Using Function Statement in Golang. Show all posts

Thursday, August 1, 2019

Legal Age Checker Using Function Statement in Golang


Write a program that will ask the user to give its age and then the program will check and determine if the given age of the user is already an adult or still a minor using functions.

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 31, 2019  Wednesday 12:47 PM
 */

package main

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

func check_age(age int32, name_display string) int {
switch {
case age >= 18:
fmt.Print("\tHello ", name_display)
fmt.Println("\tAt the age of", age, " years old you are already an Adult.")
default:
fmt.Print("\tHello ", name_display)
fmt.Println("\tAt the age of", age, "you are still a  Minor.")
}

return 0
}


func main() {

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

fmt.Print("\n")
fmt.Print("\tLegal Age Checker Using Function 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)
check_age(age,name_display)
}