본문 바로가기
Language/C#

if ~ else

by ninanio3 2011. 11. 12.


 

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6.  
  7. /*
  8.  * 문제 내용 : 입력된 정수가 짝수인지 홀수인지 알아보자.
  9.  * if ~ else 조건문을 익힌다.
  10.  * 조건식 내용이 참이면 if의 바디({})를 실행하고, 거짓이면 else의 바디({})를 실행한다.
  11.  * */
  12.  
  13.  
  14. namespace Console_Test
  15. {
  16.     public class Program
  17.     {
  18.         static void Main(string[] args)
  19.         {
  20.             Console.WriteLine("정수를 입력하세요");
  21.             int iNum1 = int.Parse(Console.ReadLine());
  22.  
  23.             bool bIs = Number.isE(iNum1);
  24.  
  25.             if (bIs)
  26.             {
  27.                 Console.WriteLine("정수{0}는 짝수입니다.", iNum1);
  28.             }
  29.             else
  30.             {
  31.                 Console.WriteLine("정수{0}는 홀수입니다.", iNum1);
  32.             }
  33.         }
  34.  
  35.         public class Number
  36.         {
  37.             public static bool isE(int even)
  38.             {
  39.                 if (even % 2 == 0)
  40.                 {
  41.                     return true;
  42.                 }
  43.                 else
  44.                 {
  45.                     return false;
  46.                 }
  47.             }
  48.         }
  49.     }
  50. }




이 문제의 출처는 c#프로그래밍 기본기 익히기, 정보문화사, 25000, 조효은지음, 2010년 10월 4일 2쇄발행, ISBN 978-89-5674-452-0 이고, 풀이는 제가 직접 썼습니다. 저작권 침해가 됐다면 내리겠습니다.