// 함수 이름: sayHello
// 매개변수: string name
// 기능: "안녕, name!" 이라고 출력하기
// 예: sayHello("지민"); → 안녕, 지민!











// 함수 이름: add
// 매개변수: int a, int b
// 기능: a와 b를 더한 값을 출력하기
// 예: add(3, 4); → 7 출력







// 함수 이름: repeatHello
// 매개변수: int count
// 기능: "안녕!"을 count번 출력하기
// 예: repeatHello(3); → 안녕! 3번 출력

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: