Update README.md

This commit is contained in:
zainab Dnaya 2022-08-02 17:49:17 +01:00 committed by GitHub
parent 92e64ac14a
commit 37765e03c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -26,10 +26,10 @@ import "fmt"
func main() {
fmt.Println(Y_quarter(2))
fmt.Println(Y_quarter(5))
fmt.Println(Y_quarter(8))
fmt.Println(Y_quarter(11))
fmt.Println(Y_quarter(13))
fmt.Println(Y_quarter(-5))
fmt.Println(Y_quarter(8))
fmt.Println(Y_quarter(11))
fmt.Println(Y_quarter(13))
fmt.Println(Y_quarter(-5))
}
```
And its output :
@ -42,4 +42,4 @@ $ go run .
4
-1
-1
```
```