나이를 입력받고 나이에 따라 놀이공원의 입장료를 계산하는 프로그램을 작성하시오. 입장료는 65세 이상은 10000원, 13세 이상 65세 미만은 20000원, 6세 이상 13세 미만은 8000원, 5세 이하는 5000원 입니다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp4
{
class Program
{
static void Main(string[] args)
{
Console.Write(" 나이를 입력해 주세요 : ");
int age = int.Parse(Console.ReadLine());
if (age < 6)
{
Console.WriteLine("5000원 입니다.");
}
else if (age < 13)
{
Console.WriteLine("8000원 입니다.");
}
else if (age < 65)
{
Console.WriteLine("20000원 입니다."); }
else
{
Console.WriteLine("무료 입니다.");
}
}
}
}
'Programming > C#' 카테고리의 다른 글
C# 1부터 10사이의 짝수의 합 홀수의 곱 (0) | 2021.04.27 |
---|---|
C# - switch-case 실습 (0) | 2021.04.27 |
C# 윤년 (0) | 2021.04.26 |
C# 섭씨 화씨 (0) | 2021.04.26 |
C# 원의 넓이 구하기 (0) | 2021.04.26 |
댓글