Saltar al contenido

ejemplo de código golang do while

Ejemplo 1: golang while loop

package main

import "fmt"

func main(){
	//only one type of look in golang. A for loop. to make a while loop simple
    //emit all statments but the bools
    var x int = 10
    for x > 0{
    	fmt.Println(x)//this will print all numbers from 10-1
    	x--//decrement the x to make it go down by one each loop
    }
}

Ejemplo 2: ir mientras

C's while is spelled for in Go.
package main
import "fmt"
func main() {
	sum := 1
	for sum < 1000 {
		sum += sum
	}
	fmt.Println(sum)
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)


Tags : /

Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *