You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
635 B

5 years ago
## printcomb2
5 years ago
### Instructions
3 years ago
Write a function that prints in ascending order and on a single line: all possible combinations of two different two-digit numbers.
These combinations are separated by a comma and a space.
5 years ago
### Expected function
```go
func PrintComb2() {
}
```
5 years ago
### Usage
Here is a possible program to test your function :
```go
package main
import "piscine"
func main() {
piscine.PrintComb2()
}
```
This is the incomplete output :
```console
3 years ago
$ go run . | cat -e
00 01, 00 02, 00 03, ..., 00 98, 00 99, 01 02, 01 03, ..., 97 98, 97 99, 98 99$
3 years ago
$
```
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)