Advertisement
Spocoman

02. Multiplication Table

Sep 23rd, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.18 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.     for i := 1; i <= 10; i++ {
  7.         for j := 1; j <= 10; j++ {
  8.             fmt.Printf("%d * %d = %d\n", i, j, i * j)
  9.         }
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement