Notice
Recent Posts
Recent Comments
Link
투케이2K
79. (C#/NET) [Mac Os] [문법] Math.Round 사용해 소수점 반올림 수행 실시 본문
[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;
using System.Web;
namespace testProject {
// [프로그램 동작 클래스]
class Program {
// [메소드 수행]
static void Main(string[] args){
// [변수 선언 실시]
double one = 3.56;
double two = 3.14;
// [Round 사용해 소수점 반올림 수행 실시]
double result_1 = Math.Round(one);
double result_2 = Math.Round(two);
// [결과 출력]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"result_1 : {result_1}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"result_2 : {result_2}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments