Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 8 > Lesson 5

package main
import "fmt"

func main() {
var listOfTwenty [20] int
for i := 0; i < 20; i++ {
listOfTwenty[i] = i+1
}
fmt.Println("Here is the list of 20 numbers:")
for j := 0; j<20 ;j++{
fmt.Println(listOfTwenty[j])
}
}

submit krne pr show yhi ho rha ..."
Have you completed the code to add values to the listOfTwenty array?"
by

2 Answers

iamabhishek
Hey Rajnish, please check now, it should work.
rajnishsinghrajpoot
sir i tried but submition ni ho rha hai

Login / Signup to Answer the Question.