[C#] 백준 10988번 : 팰린드롬인지 확인하기 [C#] 백준 10988번 : 팰린드롬인지 확인하기using System;class Program{ static void Main() { string word = Console.ReadLine(); int b = word.Length - 1; bool flag = true; for (int i = 0; i 백준/C# 2025.02.06
[C#] 백준 2444번 : 별 찍기 - 7 [C#] 백준 2444번 : 별 찍기 - 7using System;class Program{ static void Main() { int num = int.Parse(Console.ReadLine()); int a = num; int b = 1; for (int i = 0; i 백준/C# 2025.02.06
[C#] 백준 3003번 : 킹, 퀸, 룩, 비숍, 나이트, 폰 [C#] 백준 3003번 : 킹, 퀸, 룩, 비숍, 나이트, 폰using System;class Program{ static void Main() { string[] arr = Console.ReadLine().Split(" "); string[] chess = new string[] { "1", "1", "2", "2", "2", "8" }; int remain = 0; int[] output = new int[6]; for (int i = 0; i 백준/C# 2025.02.06
[C#] 백준 25083번 : 새싹 [C#] 백준 25083번 : 새싹using System;class Program{ static void Main() { Console.WriteLine(" ,r'\"7"); Console.WriteLine("r`-_ ,' ,/"); Console.WriteLine(" \\. \". L_r'"); Console.WriteLine(" `~\\/"); Console.WriteLine(" |"); Console.WriteLine(" |"); }} 백준/C# 2025.02.06
[C#] 백준 11718번 : 그대로 출력하기 [C#] 백준 11718번 : 그대로 출력하기using System;class Program{ static void Main() { for (int i = 0; i 백준/C# 2025.02.06
[C#] 백준 5622번 : 다이얼 [C#] 백준 5622번 : 다이얼using System;class Program{ static void Main() { string word = Console.ReadLine(); int sum = 0; for (int i = 0; i 백준/C# 2025.02.06
[C#] 백준 2908번 : 상수 [C#] 백준 2908번 : 상수using System;class Program{ static void Main() { string[] arr = Console.ReadLine().Split(" "); string a = arr[0]; string b = arr[1]; string temp = ""; int[] num = new int[3]; for (int i = 2; i >= 0; i--) { if (a[i] b[i]) { temp = a; break; } } if.. 백준/C# 2025.02.06
[C#] 백준 1152번 : 단어의 개수 [C#] 백준 1152번 : 단어의 개수using System;class Program{ static void Main() { string[] arr = Console.ReadLine().Split(" "); int sum = 0; for (int i = 0; i 백준/C# 2025.02.05
[C#] 백준 2675번 : 문자열 반복 [C#] 백준 2675번 : 문자열 반복using System;class Program{ static void Main() { int r = int.Parse(Console.ReadLine()); for (int i = 0; i 백준/C# 2025.02.05
비용 산정 기법 (하향식 기법, 상향식 기법) 우리가 무슨 활동을 할 때 매번 고려하지 않아선 안되는 사항이 있다. 그건 바로 비용, 즉, 돈과 시간, 인력에 관련된 내용이다. 오늘은 프로젝트를 진행하기에 앞서 이러한 비용을 산정하는 기법들에 대해 알아볼 예정이다. 비용 산정 기법에는 하향식 기법과 상향식 기법이 있다. 오늘 포스팅에서는 이에 대한 특징과 하향식 기법 종류와 상향식 기법들에 대한 종류를 알아본다.하향식 기법 비용산정 기법에서 하향식 기법이란, 전체 프로젝트를 기반으로 비용을 추정한 다음, 이를 세부적으로 나누는 방식이다. 즉, 프로젝트의 전체적인 틀에서 비용을 산정한 뒤, 이 비용을 세부 항목으로 나누는 방식이라고 생각하면 된다. 그 종류에는 전문가 감정 기법과 델파이 기법이 있다. 전문가 감정 기법 전문가 감정 기법은 말그대로 특정.. 정보처리기사/소프트웨어 설계 2025.02.05