블로그
- The First Target Said the union: the auto industry must raise wages 30% to make up for the loss in take-home pay caused by the return of peace, i.e., the loss of eight hours of overtime when the week was cut from 48 to 40
- JAVA에서 System.in.read()로 문자열 입력 true){ a = System.in.read(); if(a == 10){ break; } k += (char)a; } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return k; } JAVA 동영상을 보다가, 문자열 입력하는 통상적인 메소드가 아닌, System.in.read(
- [영진전문대 컴퓨터정보계열 컴퓨터프로그래밍전공] 자바서버프로그래밍 name + " " + number; } public int compareTo(Student s) { return number - s.number; } } public class asdf { public static void main(String[] args) { // TODO Auto-generated method stub Student array[] =
- 영진전문대 컴퓨터 정보학과 WD2A Recursive.java package Search; public class Recursive { public static void main(String[] args) { // TODO Auto-generated void gugu8dan(int i) { // TODO Auto-generated method stub if(i>9)return; System.out.println("8*"+i
- [영진전문대학컴퓨터정보계열컴퓨터프로그래밍전공반] 상속 예제 boolean turbo; public void setTurbo(boolean newValue){ turbo = newValue; } public String toString(){ return "+color+",Turbo="+turbo; } } public class ex_01 { public static void main(String[] args) { // TODO Auto-generated
- [영진전문대 컴퓨터정보계열 프로그래밍전공]자바의 개요2 ----------- import java.util.Scanner; class Exam { int c; public int add(int a, int b) { c = a+b; return c; } } public class circleArea { public static void main(String[] args) { // TODO Auto-generated method
