add: array exercises
This commit is contained in:
42
14-arrays/exercises/11-average/main.go
Normal file
42
14-arrays/exercises/11-average/main.go
Normal file
@@ -0,0 +1,42 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
// ---------------------------------------------------------
|
||||
// EXERCISE: Find the Average
|
||||
//
|
||||
// Your goal is to fill an array with numbers and find the average.
|
||||
//
|
||||
// 1. Get the numbers from the command-line.
|
||||
//
|
||||
// 2. Create an array and assign the given numbers to that array.
|
||||
//
|
||||
// 3. Print the given numbers and their average.
|
||||
//
|
||||
// RESTRICTION
|
||||
// + Maximum 5 numbers can be provided
|
||||
// + If one of the arguments are not a valid number, skip it
|
||||
//
|
||||
// EXPECTED OUTPUT
|
||||
// go run main.go
|
||||
// Please tell me numbers (maximum 5 numbers).
|
||||
//
|
||||
// go run main.go 1 2 3 4 5 6
|
||||
// Please tell me numbers (maximum 5 numbers).
|
||||
//
|
||||
// go run main.go 1 2 3 4 5
|
||||
// Your numbers: [1 2 3 4 5]
|
||||
// Average: 3
|
||||
//
|
||||
// go run main.go 1 a 2 b 3
|
||||
// Your numbers: [1 0 2 0 3]
|
||||
// Average: 2
|
||||
// ---------------------------------------------------------
|
||||
|
||||
func main() {
|
||||
}
|
Reference in New Issue
Block a user