자바 성적출력에서 조건을 3개로 하고 싶습니다.
글쓴이: 익명 사용자 / 작성시간: 금, 2018/09/28 - 8:45오전
public class fjfjfjf { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("이름 입력=>"); String name = sc.next();//문자열입력 System.out.print("수학 점수=>"); double html=sc.nextDouble(); System.out.print("영어 점수=>"); double jsp=sc.nextDouble(); System.out.print("과학 점수=>"); double java=sc.nextDouble(); double total=html+jsp+java; double avg=total/3.0; System.out.println(name+"학생의 점수"); System.out.println("수학 : "+html); System.out.println("영어 : "+jsp); System.out.println("과학 : "+java); System.out.println("합계 : "+total); System.out.printf("평균 : %.2f\n" , avg); System.out.println("-------------------------------"); double[] arr = new double[3]; arr[0]=html; arr[1]=jsp; arr[2]=java; double max; double min; int i; max = min = arr[0]; for(i=1;i<arr.length;i++){ if(max<arr[i]){ max= arr[i]; } if(min>arr[i]){ min = arr[i]; } } System.out.println("최대값 : " + max); System.out.println("최소값 : " + min); }}
위에는 이름 받고 성적 3개 받아서
평균하고 합계 출력하는 코드인데요.
여기서
cs 경제 영어
UCLA 3.7 3.5 3.7
UCB 3.8 3.2 3.4
UCI 3.6 3.4 3.3
UCSD 3.5 3.3 3.0
이렇게 3가지 조건을 정하고
Enter the school name: UCLA
Enter the major: CS
Enter your GPA: 3.457
You need to improve your GPA by 0.24 to transfer to UCLA to study CS
-----------------
Enter the school name: ucsd
Enter the major: english
Enter your GPA: 3.12
You could transfer to ucsd to study english
이렇게 출려하는 식으로 바꾸려면 어떻게 해야하나요?
조건을 3개 설정하고 맞게 출력하는걸 못하겠습니다
Forums:
참고해보세요.
//
UCLA 3.7 3.5 3.7 = 3.457
UCB 3.8 3.2 3.4
UCI 3.6 3.4 3.3
UCSD 3.5 3.3 3.0 = 3.12
You need to improve your GPA by 0.24 to transfer to ㅁㅁㅁ to study ㅠㅠㅠㅠ
You could transfer to ㅁㅁㅁㅁto study ㅠㅠㅠㅠ
//
스크래치 '로 만들어 봤어요. ㅇ_ㅇ;;
https://scratch.mit.edu/projects/248996063/
SPACE 키 버튼 = ucsd
A 키 버튼 = UCLA
중지 버튼 누르고 하시면 빠름.
소스는 스크립트 보기' 버튼 누르면 보임.
----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.
매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.
각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com
댓글 달기