6장 연습문제1 이것이 C# 6장 연습문제 풀이 1. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 using System; using static System.Console; namespace Practice2 { class MainApp { static double Square(double arg) { return arg * arg; // 제곱한 값을 반환해 주시면 됩니다. } public static void Main() { Write("수를 입력하세요 : "); string inPut = ReadLine(); double arg = Convert.ToDouble(inPut); WriteLine("결과 {0}", Square(arg)); } } } 2. call by value 와 call by .. 2019. 5. 9. 이전 1 다음