분류 전체보기 203

Scanner 클래스를 사용하여 6개 학점('A', 'B', 'C', 'D', 'F')을 문자로 입력받아 ArrayList에 저장하고,ArrayList를 검색하여 학점을 점수(A=4.0, B=3.0, C=2.0, D=1.0, F=0)로 변환하여 평균을 출력하는 프로그램을..

import java.util.ArrayList; import java.util.InputMismatchException; import java.util.Scanner; import jdk.javadoc.internal.doclets.toolkit.taglets.ThrowsTaglet; class ListIntMax{ private ArrayList arrList; private int max; public ListIntMax(){ arrList = new ArrayList(); } public int getMax() { max = 0; for (Integer i : arrList) { if(i > max) max = i; } return max; } public void setMax(int max) {..

프로그램 문제 2021.11.08

Scanner 클래스로 -1이 입력될 때까지 양의 정수를 입력받아 List에 저장하고List를 검색하여 가장 큰 수를 출력하는 프로그램

import java.util.ArrayList; import java.util.Scanner; class ListIntMax{ private ArrayList arrList; private int max; public ListIntMax(){ arrList = new ArrayList(); } public int getMax() { max = 0; for (Integer i : arrList) { if(i > max) max = i; } return max; } public void setMax(int max) { this.max = max; } public ArrayList getArrList() { try { Scanner sc = new Scanner(System.in); System.out.pr..

프로그램 문제 2021.11.08

프로그래밍 언어 점유율 사이트 - 프로그래머가 가장 힘들어 하는 일

https://www.tiobe.com/tiobe-index/ 언어별 시장 점유율을 확인 할수 있는 사이트 index | TIOBE - The Software Quality Company TIOBE Index for October 2021 October Headline: Python programming language number 1! For the first time in more than 20 years we have a new leader of the pack: the Python programming language. The long-standing hegemony of Java and C is over. Python, which www.tiobe.com 프로그래머가 가장 힘들어 하는 일(Pro..

프로그램 문제 2021.11.05