티스토리 뷰
* 입력함수 : Console.ReadLine()
* 출력함수 : Console.WriteLine("내용")
-> {0} : 첫번 째 출력할 변수의 값
-> {0:0.0} : 소숫점 첫번 째까지 출력
using System;
namespace _20190823
{
class Program
{
static void solve(int a, int b, int c)
{
Console.WriteLine("SUM : {0}", a+b+c); //합
Console.WriteLine("avg : {0:0.0}", (a+b+c)/3); //평균
}
static void Main(string[] args)
{
int a, b, c;
a = int.Parse(Console.ReadLine()); //a 입력
b = int.Parse(Console.ReadLine()); //b 입력
c = int.Parse(Console.ReadLine()); //c 입력
solve(a, b, c); //a, b, c에 대한 합과 평균 구하기
}
}
}
'프로그래밍 > C, C#, PYTHON' 카테고리의 다른 글
C# 세 정수를 입력받아 MAX값 출력해주기 (0) | 2019.08.23 |
---|---|
C [Warning] incompatible implicit declaration of built-in function (0) | 2019.07.25 |
C# 정수, 실수 (0) | 2019.06.25 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday