Showing posts with label Odd and Even Numbers Lister Using One Dimensional Array in Go. Show all posts
Showing posts with label Odd and Even Numbers Lister Using One Dimensional Array in Go. Show all posts

Friday, August 2, 2019

Odd and Even Numbers Lister Using One Dimensional Array in Go

Write a program using a one-dimensional array that will ask you to give a series of numbers and then the program will check and display the list of odd and even numbers based on the given numbers by our user.

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


/* odd_even.go
   Author   : Mr. Jake Rodriguez Pomperada, MAED-IT
   Date     : August 1, 2019  Thursday   11:09 AM
   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 arr [100] int
var a int
var c int
b := 0

fmt.Print("\n")
fmt.Print("\t\tOdd and Even Numbers Lister")
fmt.Print("\n\n")
fmt.Print("\tHow many items to be process? : ");
fmt.Scanln(&b);
fmt.Print("\n")
for a = 1; a <= b; a++ {
fmt.Printf("\tEnter value in item no. %d : ", a);
fmt.Scanln(&arr[a]);
}

fmt.Print("\n\n");
fmt.Print("\t===== DISPLAY RESULT =====");
fmt.Print("\n\n");
fmt.Print("\tList of Even Numbers : ");
fmt.Print("\n\n");
for c = 1; c <= b; c++ {
if (arr[c] % 2 == 0) {
fmt.Printf("\t%d ", arr[c]);
}
}

fmt.Print("\n\n");
fmt.Print("\tList of Odd Numbers : ");
fmt.Print("\n\n");
for c = 1; c <= b; c++ {
if (arr[c] % 2 != 0) {
fmt.Printf("\t%d ",arr[c]);
}
}
fmt.Print("\n\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}