[C#] 7일차 - 46. 평균, 최소, 최대값 구하기C#/C#200제2021. 1. 22. 14:05
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A046_MinMax
{
class Program
{
static void Main(string[] args)
{
double max = double.MinValue;
double min = double.MaxValue;
double sum = 0;
for(int i =0; i <5; i++)
{
Console.Write("키를 입력하세요(단위 : cm) : ");
double h = double.Parse(Console.ReadLine());
if (h > max)
max = h;
if (h < min)
min = h;
sum += h;
}
Console.WriteLine("평균: {0}cm, 최대:{1}cm, 최소:{2}cm", sum / 5, max, min);
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 7일차 - 48. 팩토리얼 구하기 (0) | 2021.01.23 |
---|---|
[C#] 7일차 - 47. x의 y승 구하기 (0) | 2021.01.23 |
[C#] 7일차 - 45. 반복문으로 구구단 출력 (0) | 2021.01.22 |
[C#] 7일차 - 44. 반복문으로 2진, 8진, 16진 출력 (0) | 2021.01.22 |
[C#] 7일차 - 43. 반복문(1에서100까지 더하기, 홀수의합, 역수의합) (0) | 2021.01.22 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!