Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 379 Bytes

6.09.md

File metadata and controls

21 lines (16 loc) · 379 Bytes

Section 6.09 Loop, Conditional, Modulus

Use the modulo operator % and a for loop and if statement to print out all the even numbers from 1 to 100

package main

import (
	"fmt"
)

func main() {
	for i := 1; i <= 100; i++ {
		if i%2 == 0 { // try changing the number to 3, 4, etc.
			fmt.Println(i)
		}
	}
}

playground