Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Round1] Step3 - sy #998

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CodeStarterCamp_Week1/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@

import Foundation

drawIceCreamBody()
drawIceCreamBar()
drawPepero(stickLength: 4, bodyDecoration: "*", topping: "!", bodyLength: 10)
30 changes: 30 additions & 0 deletions CodeStarterCamp_Week1/step3.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//
// step3.swift
// CodeStarterCamp_Week1
//
// Created by jeseoyoung on 2024/09/14.
//

import Foundation

func drawPepero(stickLength: Int, bodyDecoration: String, topping: String = "", bodyLength: Int) {
loopForBodyPrint(length: bodyLength, decoration: bodyDecoration, topping: topping)
drawPeperoStick(length: stickLength)
}

func drawPeperoStick(length: Int) {
for _ in 1...length {
print(" | |")
}
}

func printPeperoBodyAndToppings(decoration: String, topping: String) {
print(" ", topping, decoration, topping, separator: "")
}

func loopForBodyPrint(length: Int, decoration: String, topping: String) {
for _ in 1...length {
printPeperoBodyAndToppings(decoration: decoration, topping: topping)
}
}

Binary file added ss_20_sy_week1-step3_flow_chart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ss_20_sy_week1-step3_pepero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.