C#에서 홀수 짝수 구하는 예제입니다.

제가 공부용으로 작성하는 글이니 강좌처럼 진행되지는 않습니다.



using System;

using System.Collectioons.Generic;

using System.Text;


namespace IfElseTest{

public class Test{

public static void Main(string[] args){

Console.Write("숫자를 입력하여 주세요:");

int n = int.Parse(console.ReadLine())); //콘솔에서 입력받은 값을 int로 형변환)


bool aaa = Number.IsCheck(n); //하단에 작성된 Number 클래스의 isCheck메서드 실행

if(aaa){

Console.WriteLine("{0}은 짝수",n);

}

else{

Console.WriteLine("{0}은 홀수",n);

}

}

}


public class Number{

public static bool IsCheck(int n){

bool check = true;   //bool형식은 true 아니면 false임

if(n%2 ==0){        

check=true;

}

else{

check = false;

}

return check;

}

}



}



+ Recent posts