728x90
반응형
반응형
C#에 있는 연산자들 중 % 연산자는 첫째 피연산자를 둘째 피연산자로 나눈 나머지를 계산합니다
// cs_operator_modulus.cs using System; class MainClass { static void Main() { Console.WriteLine(5 % 2); // int Console.WriteLine(-5 % 2); // int Console.WriteLine(5.0 % 2.2); // double Console.WriteLine(5.0m % 2.2m); // decimal Console.WriteLine(-5.2 % 2.0); // double } } |
출력
1 -1 0.6 0.6 -1.2 |
728x90
반응형
'Study > ASP.NET|C#|ASP' 카테고리의 다른 글
cmd창에서 응용프로그램 및 응용풀 설정하기 (0) | 2014.04.24 |
---|---|
[C#] Page.RegisterStartupScript (0) | 2014.02.11 |
[ASP] include 방법 (0) | 2014.02.06 |
[ASP]request.Form (0) | 2014.02.06 |
[ASP] ASP에서 try대신 사용 (0) | 2014.02.05 |