목록JAVA/국비수업 (47)
Frog is cry
public class Day05_01 { public static void main(String[] args) { //산술 연산자 int a = 10; // 10을 할당 int b = 3;// 3을 할당 System.out.println(a + b); System.out.println(a - b); System.out.println(a * b); System.out.println(a / b); System.out.println(a % b);// 나머지 값 } } // 단항연산자, 논리 부정 연산자 /* 피연산자가 한 개뿐인 연산자 : +, -, !, ++, -- +, - : 부호 ! : 논리부정 ++ 증감 : 1 증가, ++num , num++ -- 감소 : 1 감소, --num , num-- */ p..
/* 변수의 값을 1증가(++)하거나 1 감소(--)하는 연사자입니다. ++변수명 : 변수가 사용되기 전에 값이 증가된다.: 전위 증가 변수명++ : 변수가 사용된 후 에 값이 증가된다.: 후위 증가 --변수명 : 변수가 사용되기 전에 값이 감소된다.: 전위 감소 변수명-- : 변수가 사용된 후에 값이 감소된다.: 후위 감소 */ public class Day05_03 { public static void main(String[] args) { int a = 1; System.out.println(a); // 전위는 즉시 연산 // 후위는 ;이후의 연산 a++; System.out.println(a); System.out.println(++a); System.out.println(a++); System...
직사각형1 public class Day_04_Ex01 { public static void main(String[] args) { //실습1 //int rectangleLength = 10;// 길이 //int rectangleHeigth = 10;// 높이 // //int rectangleArea = 0;// 직사각형 // //rectangleArea = rectangleLength * rectangleHeigth; // // //System.out.println("직사각형의 넓이 : " + rectangleArea); // 실습1 해답 // 변수명의 표기법중 낙타표기법을 적용하여 변수를 만들 수 있습니다. // 사각형의 넓이를 구하는 공식을 수식으로 만들 수 있습니다. // println()함수와 ..
// 1 public class Day_04_05 { public static void main(String[] args) { boolean stop = false; if (stop) { System.out.println("중지합니다."); }else { System.out.println("시작합니다."); } int num1 = 20; int num2 = 20;// = 할당, 대입연산자 if(num1 == num2) { // == 등치관계연산자 // if문은 괄호 안에 참/거짓의 결과를 도출하는 논리연산식, 관계연산식을 기술합니다. System.out.println("같습니다."); }else { System.out.println("다릅니다."); } } }
// 1 public class Day03_04 { public static void main(String[] args) { //변수의 연산 int year = 0; int age = 14; System.out.println(year); System.out.println(age); year = age + 2000; System.out.println(year); System.out.println(year + 1000); System.out.println(year); } } // 2 public class Day03_05 { public static void main(String[] args) { int x = 10; // x변수의 10 초기화 int y = 20; // y변수의 20 초기화 //x = 20..
// 1 public class Day03_01 { public static void main(String[] args) { byte a = 127;// 바이트 최대 값 -128 ~ 127 // int b = a;// 자동 형변환 int b; b = a; System.out.println(b); // 포인트 System.out.println(a); b= b + 1; byte c = 127; c = a; System.out.println(c); float d = b;// 자동형변환 함(정수를 실수로) System.out.println(d); } } // 2 public class Day03_02 { public static void main(String[] args) { int a = 263; System..