CSS - Posision 간단 정리 static - 포지션의 기본값 - 위치를 지정 하지 않은 상태를 표현 top : 10px bottom 20px 등의 요소가 먹혀들지 않음. 그래서 relative 요소를 줌 -그러면 10px bottom 20px 먹힘 html 에서 부모 자식 관계는 만들어져 있지만, CSS 에서는 부모 자식 관계를 만들려면 자식에 absolute 부모에 relative 를 적어 줘야함. 안그러면 body 를 부모로 여김 html,css 2021.11.09
학생 이름, 학과, 학번, 학점평균 입력하세요. >> import java.util.ArrayList; import java.util.Scanner; import java.util.StringTokenizer; class Student { private String name; private String department; private String number; private double grade; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDepartment() { return department; } public void setDepartment(String department) { this... 프로그램 문제 2021.11.09
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
원객체 ArrayList 에 입력후 - 출력 import java.util.ArrayList; import java.util.Scanner; import java.util.StringTokenizer; class Circle { private double r; public Circle(double r) { this.r = r; } public double getArea() { return r * r * Math.PI; } public double getR() { return this.r; } } public class WordCount { public static void main(String[] args) { ArrayList cirList = new ArrayList(); for (int i = 1; i 프로그램 문제 2021.11.05
java - Box<T> 스왑문제 class Box7 { private T ob; public void set(T o) { ob = o; } public T get() { return ob; } } class DDBoxDemoMain { public static void swapBox(Box7 box1, Box7 box2) { T temp = box1.get(); box1.set(box2.get()); box2.set(temp); } public static void main(String[] args) { Box7 box1 = new Box7(); box1.set(99); Box7 box2 = new Box7(); box2.set(55); System.out.println(box1.get() + " & " + box2.get()); sw.. 프로그램 문제 2021.11.04
Java - 공백으로 분리된 어절이 몇 개 들어 있는지 확인 public class WordCount { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while(true) { System.out.print(">>"); String s = scanner.nextLine(); if(s.equals("그만")) { System.out.println("종료합니다..."); break; } StringTokenizer st = new StringTokenizer(s, " "); System.out.println("어절 개수는 " + st.countTokens()); } scanner.close(); }} 프로그램 문제 2021.11.04
java -업 다운 게임(up & down game) import java.util.Scanner; class UpDownGame { private static int COUNT = 10; private int[] arrInput;// 사용자 입력 private int answer; public UpDownGame() { arrInput = new int[COUNT]; answer = (int) (Math.random() * 100 + 1); } public void run() { Scanner sc = new Scanner(System.in); try { for (int i = 0; i .. 프로그램 문제 2021.11.03
VS CODE - html 소스코드 자동 정렬 1. beauty 를 인스톨 한다. 2. Beauty의 코드 자동 정렬 단축키는 Ctrl + Shift + B 전체 코드를 Ctrl + A로 선택하신 후에 Ctrl + Shift + B를 입력. 툴관련(이클립스,VS CODE 등등) 2021.11.02