검색결과 리스트
개발에 해당되는 글 144건
- 2013.09.12 While문 Sample (점수 입력해서 평균)
- 2013.09.12 for문 Sample (1~10까지 덧셈)
- 2013.09.12 가위 바위 보 게임
- 2013.09.12 폼안에 성적출력하기
글
While문 Sample (점수 입력해서 평균)
※코딩 창
import java.util.Scanner;
public class While{
public static void main(String[]args){
Scanner a=new Scanner(System.in);
int i=0;
double sum=0;
int n=0;
while((i=a.nextInt())!=0) { //0을 입력하면 종료 후 평균 계산
sum=sum+i;
n++;
}
System.out.print("입력개수는 "+n+"개이고, 평균은 "+sum/n+"입니다");
}
}
※결과 창
20
50
60
0
입력개수는 3개이고, 평균은 43.333333333333336입니다
'개발 > 코딩' 카테고리의 다른 글
Continue문 (1~100까지 짝수의 합) (0) | 2013.09.12 |
---|---|
2중for문 (구구단) (0) | 2013.09.12 |
for문 Sample (1~10까지 덧셈) (0) | 2013.09.12 |
가위 바위 보 게임 (0) | 2013.09.12 |
폼안에 성적출력하기 (0) | 2013.09.12 |
설정
트랙백
댓글
글
for문 Sample (1~10까지 덧셈)
※코딩창
public class ForSample {
public static void main(String[] args) {
int i, j;
for (j = 0, i = 1; i <= 10; i++) {
j = j + i;
System.out.print(i);
if (i == 10) {
System.out.print('=');
System.out.print(j);
} else
System.out.print('+');
}
}
}
※결과 창
1+2+3+4+5+6+7+8+9+10=55
'개발 > 코딩' 카테고리의 다른 글
Continue문 (1~100까지 짝수의 합) (0) | 2013.09.12 |
---|---|
2중for문 (구구단) (0) | 2013.09.12 |
While문 Sample (점수 입력해서 평균) (0) | 2013.09.12 |
가위 바위 보 게임 (0) | 2013.09.12 |
폼안에 성적출력하기 (0) | 2013.09.12 |
설정
트랙백
댓글
글
가위 바위 보 게임
import java.util.Scanner;
public class Game {
public static void main(String[] arge) {
Scanner a = new Scanner(System.in);
System.out.println("철수는");
String A = a.next();
System.out.println("영희는");
String B = a.next();
if (A.equals("가위")) {
if (B.equals("가위"))
System.out.println("비겼습니다");
else if (B.equals("바위"))
System.out.println("영희가 이겼습니다");
else if (B.equals("보"))
System.out.println("철수가 이겼습니다");
}
if (A.equals("바위")) {
if (B.equals("바위"))
System.out.println("비겼습니다");
else if (B.equals("보"))
System.out.println("영희가 이겼습니다");
else if (B.equals("가위"))
System.out.println("철수가 이겼습니다");
}
if (A.equals("보")) {
if (B.equals("보"))
System.out.println("비겼습니다");
else if (B.equals("가위"))
System.out.println("영희가 이겼습니다");
else if (B.equals("바위"))
System.out.println("철수가 이겼습니다");
}
}
}
'개발 > 코딩' 카테고리의 다른 글
Continue문 (1~100까지 짝수의 합) (0) | 2013.09.12 |
---|---|
2중for문 (구구단) (0) | 2013.09.12 |
While문 Sample (점수 입력해서 평균) (0) | 2013.09.12 |
for문 Sample (1~10까지 덧셈) (0) | 2013.09.12 |
폼안에 성적출력하기 (0) | 2013.09.12 |
설정
트랙백
댓글
글
폼안에 성적출력하기
※코딩창
public class Program {
public static void main(String[] args) {
int kor,eng,math;
int total;
float avg;
kor=40;
eng=50;
math=60;
total = kor+eng+math;
avg=total/3.0f;
System.out.println("┌─────────────────────────────┐");
System.out.println("│ 성적 출력 │");
System.out.println("├────┬────┬────┬────┬────┬────┤");
System.out.println("│ 번호 │ 국어 │ 영어 │ 수학 │ 총점 │ 평균 │");
System.out.println("├────┼────┼────┼────┼────┼────┤");
System.out.printf("│%d │%d │%d │%d │%d │%f │\n",1,kor,eng,math,total,avg);
System.out.println("└────┴────┴────┴────┴────┴────┘");
} // %d를 %3d 로 수정하게 되면 100이나 90을 입력해도 (3으로)간격은 같다.
}
※결과창
┌─────────────────────────────┐
│ 성적 출력 │
├────┬────┬────┬────┬────┬────┤
│ 번호 │ 국어 │ 영어 │ 수학 │ 총점 │ 평균 │
├────┼────┼────┼────┼────┼────┤
│1 │40 │50 │60 │150 │50.000000 │
└────┴────┴────┴────┴────┴────┘
'개발 > 코딩' 카테고리의 다른 글
Continue문 (1~100까지 짝수의 합) (0) | 2013.09.12 |
---|---|
2중for문 (구구단) (0) | 2013.09.12 |
While문 Sample (점수 입력해서 평균) (0) | 2013.09.12 |
for문 Sample (1~10까지 덧셈) (0) | 2013.09.12 |
가위 바위 보 게임 (0) | 2013.09.12 |