Last active
January 4, 2022 10:53
-
-
Save MM25Zamanian/b04a84f77b7946162c81409eeae904ad to your computer and use it in GitHub Desktop.
Julia Language: Print Center Star With *n Number
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function star_center(n) | |
for i = 1:2:n | |
print(repeat(' ', Int(ceil((n - i) / 2)))) | |
print(repeat('*', i)) | |
println(repeat(' ', Int(ceil((n - i) / 2)))) | |
end | |
end | |
star_center(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment