Showing posts with label Average Grade Solver Using One-Dimensional Array in Golang. Show all posts
Showing posts with label Average Grade Solver Using One-Dimensional Array in Golang. Show all posts

Friday, August 2, 2019

Average Grade Solver Using One-Dimensional Array in Golang


Write a program using a one-dimensional array to ask the user to give a series of grades and then the program will compute the average grade and display the result on the screen.

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

/* average_grade.go
   Author   : Mr. Jake Rodriguez Pomperada, MAED-IT
   Date     : August 1, 2019  Thursday  8:31 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"


func main() {

var grades[6] int
a :=0
solve := 0
sum := 0


fmt.Print("\n")
fmt.Print("\t\tAverage Grade Solver")
fmt.Print("\n\n")

for a = 1; a <= 5; a+=1 {
fmt.Printf("\tEnter Grade No. %d : ", a);
fmt.Scanln(&grades[a]);
}

for a=0; a<=5; a+=1 {
sum = sum + grades[a];
solve =(sum/5);
}

fmt.Printf("\n");
fmt.Printf("\tThe average grades is %d. ",solve);
fmt.Printf("\n\n");
if (solve >=75) {
fmt.Printf("\tYou Passed the subject.");
} else {
fmt.Printf("\tYou Failed the subject.");
}

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