Skip to content

Instantly share code, notes, and snippets.

@MM25Zamanian
Last active January 4, 2022 10:53
Show Gist options
  • Save MM25Zamanian/b04a84f77b7946162c81409eeae904ad to your computer and use it in GitHub Desktop.
Save MM25Zamanian/b04a84f77b7946162c81409eeae904ad to your computer and use it in GitHub Desktop.
Julia Language: Print Center Star With *n Number
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