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;
}
}
}
'코딩' 카테고리의 다른 글
C# switch~case 문 -- 작성중 (0) | 2019.03.25 |
---|---|
javascript 문자열 자르기,반대로 자르기,특정문자를 기준으로 자르기 (0) | 2019.03.23 |
C# break문 (0) | 2019.03.21 |
Visual Studio에서 디버그 실행시 오류 처리 (0) | 2019.03.19 |
Javascript xml 파일 생성 및 내용 쓰기 (0) | 2019.03.18 |