Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to use for loop like do while loop in Go

2 Answers

0 votes
package main

import "fmt"

func main() {
	i := 1
	sum := 0
	for {
		sum += i
		if i == 5 {
			break
		}
		i++
	}
	fmt.Println(sum)
}


/*
run:

15

*/

 



answered Mar 4, 2020 by avibootz
0 votes
package main

import "fmt"

func main() {
	i := 0
	sum := 0
	for {
		i++
		sum += i
		if i == 5 {
			break
		}
	}
	fmt.Println(sum)
}


/*
run:

15

*/

 



answered Mar 4, 2020 by avibootz

Related questions

1 answer 133 views
133 views asked Mar 4, 2020 by avibootz
1 answer 181 views
1 answer 111 views
111 views asked Nov 28, 2022 by avibootz
2 answers 150 views
150 views asked Oct 7, 2022 by avibootz
1 answer 136 views
2 answers 169 views
169 views asked Apr 23, 2021 by avibootz
1 answer 184 views
184 views asked Oct 15, 2020 by avibootz
...