Friday, August 9, 2019

Concatenation of Strings in Go

Write a program that will ask the first name, middle name and last name of the user and then it will concatenate the first name, middle name and last name of the user and display the results on the screen Golang.

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

/* concatenation.go
   Author   : Mr. Jake Rodriguez Pomperada, MAED-IT
   Date     : August 5, 2019  Monday 3:55 PM
   Location : Bacolod City, Negros Occidental
   Website  : http://www.jakerpomperada.com
   Emails   : jakerpomperada@gmail.com and jake_pomperada@tup.edu.ph
 */


package main

import (
"fmt"
"strings"
)


func main() {

var first_name string
var middle_name string
var last_name string

fmt.Print("\n")
fmt.Print("\tConcatenation of Strings")
fmt.Print("\n\n")
fmt.Print("\tEnter your First Name  : ")
fmt.Scanln(&first_name)
fmt.Print("\tEnter your Middle Name : ")
fmt.Scanln(&middle_name)
fmt.Print("\tEnter your Last Name   : ")
fmt.Scanln(&last_name)
fmt.Print("\n")
fmt.Print("\tDISPLAY THE RESULTS")
fmt.Print("\n\n")

complete := first_name + " " + middle_name + " " + last_name
display := strings.ToUpper(complete)

fmt.Printf("\tWelcome  %s.",display)

fmt.Print("\n\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}








No comments:

Post a Comment