일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- GitHub Mirroring
- 티스토리초대
- Emmet
- GitHub 미러링
- settings sync
- 티스토리 초대장/ 티스토리초대
- react native #gradle
- 초대장
- Path Alias
- GitLab미러링
- React Native
- visual studio code cli
- GitLab Mirroring
- 프리티어
- visual studio code
- currentTimeMillis
- code .
- 네이버 클라우드 플랫폼
- gitlab 연동
- 음료같은녹즙
- '티스토리 초대장/ 티스토리초대'
- 유니옥션
- 티스토리 초대장
- webstorm
- 니돈내먹
- code 설치
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- eslint-import-resolver-typescript
- 실행시간 측정
- code 세팅
Archives
- Today
- Total
방치하기
주민 번호님 인수로 받아서 남녀 구별해주기 .substring 본문
반응형
class w2{
public static void main(String[] args)
{
String str = args[0];
char ch;
ch=str.charAt(6);
int a=(int)ch;
if (48<a && a<58)
{
if(ch=='1'||ch=='3')
System.out.printf("남자입니다.",ch);
else
System.out.printf("여자입니다.",ch);
}
else if(ch=='-')
{
ch=str.charAt(7);
if(ch=='1'||ch=='3')
System.out.printf("남자입니다.",ch);
else
System.out.printf("여자입니다.",ch);
}
else
{
System.out.printf("주민번호를 입력하란말이야 ㅠ");
}
//생년월일 출력
System.out.println();
int birth= Integer.parseInt("19"+str.substring(0,2));
int month = Integer.parseInt(str.substring(2,4));
int day =Integer.parseInt(str.substring(4,6));
System.out.println("당신의 생년월일은"+birth+"년"+month+"월"+day+"일 입니다");
}
}
반응형
'홍익대 Java > 과제' 카테고리의 다른 글
학생 3명 객체 생성후 . 과목 3개 값 대입 하고 평균 구해주고 석차 순위대로 출력(야매.. 정식 은 조만간 올리겠음) 덤으로 버그도 있다 . 토탈이 같을경우는 문제가 발생한다 ㅎ 고치기 귀찮아서 그냥 했을뿐 (0) | 2009.07.21 |
---|---|
Calclulator 핵심은 스캐너 겠지 . (0) | 2009.07.20 |
현금 입출기 (0) | 2009.07.18 |
in.read in.skip 사칙 연산자 (0) | 2009.07.16 |
시간 지연 .Thread.sleep (0) | 2009.07.16 |
Comments