728x90
반응형
안녕하세요 아임코딩입니다.
조건문 문제풀이7 입니다.
유튜브 링크
문제 링크
https://www.acmicpc.net/problem/2480
문자열 입력
문자열 입력 후 문자열 배열에 저장합니다.
문자열 -> 정수 변환
문자열을 정수로 변환한 후 저장합니다.
조건문
주사위 세개가 모두 같을 때
주사위 1,2 가 같을 때
주사위 2,3 이 같을 때
주사위 3,1 이 같을 때
주사위가 모두 다를 때
최대 주사위값을 구해서 가격을 구해줍니다..
전체 코드
namespace CSYoutube
{
internal class Program
{
static void Main(string[] args)
{
string[] str = Console.ReadLine().Split(" ");
int dice1 = int.Parse(str[0]);
int dice2 = int.Parse(str[1]);
int dice3 = int.Parse(str[2]);
int price = 0;
int max;
if (dice1 == dice2 && dice2 == dice3)
{
price = 10000 + dice1 * 1000;
}
else if (dice1 == dice2)
{
price = 1000 + dice1 * 100;
}
else if (dice2 == dice3)
{
price = 1000 + dice2 * 100;
}
else if (dice3 == dice1)
{
price = 1000 + dice3 * 100;
}
else //모두 다를 때
{
max = dice1;
if (max < dice2)
max = dice2;
if (max < dice3)
max = dice3;
price = max * 100;
}
Console.WriteLine(price);
}
}
}
이상으로 조건문 문제풀이 7번을 마치겠습니다.
728x90
반응형
'프로그래밍 > C#' 카테고리의 다른 글
[C# 문제풀이] 백준 10950 번 A + B - 3 (0) | 2023.05.11 |
---|---|
[C# 문제풀이] 백준 2739 번 구구단 (0) | 2023.05.11 |
[C# 문제풀이] 백준 2525 번 오븐 시계 (2) | 2023.05.10 |
[C# 문제풀이] 백준 2884 번 알람 시계 (2) | 2023.05.10 |
[C# 문제풀이] 백준 14681 번 사분면 고르기 (0) | 2023.05.10 |