Compare commits

...

7 Commits

Author SHA1 Message Date
zainabdnaya d2d2628c39 Corrected 2 years ago
zainabdnaya 6ce6c9f28a count starst correction 2 years ago
zainabdnaya 6fecafde19 👌 IMPROVE 2 years ago
zainabdnaya 4bc9674ad7 Corecting CountStar Subject 2 years ago
zainabdnaya 1327b88dcc Corecting CountStar Subject 2 years ago
zainabdnaya 4988c57bfc CountStars subject 2 years ago
zainabdnaya c672f5a43b CountStars subject 2 years ago
  1. 43
      subjects/countstars/README.md

43
subjects/countstars/README.md

@ -0,0 +1,43 @@
## CountStars
### Instructions
Write a function called CountStars that counts the stars up to a number given as an argument.
- If the number is negative or equal to 0, return "`No stars`"
- No need to manage overflow.
The Library strconv is allowed.
### Expected Function
```go
func CountStars(num int) string {
}
```
### Usage
Here is a possible program to test your function :
```go
import (
"fmt"
"strconv"
)
func main() {
fmt.Println(CountStars(5))
fmt.Println(CountStars(4))
fmt.Println(CountStars(-1))
fmt.Println(CountStars(1))
}
```
And its output :
```console
$ go run .
1 star...2 stars...3 stars...4 stars...5 stars
1 star...2 stars...3 stars...4 stars
No stars
1 star
```
Loading…
Cancel
Save