[백준] 11382번 자바 꼬마 정민 - 입출력과 사칙연산
import java.util.Scanner; public class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); long c = sc.nextLong(); System.out.println(a+b+c); } } 입력값의 크기 때문에 자료형은 long으로 해야 한다. int는 4byte 이고 값의 범위는 –2,147,483,648 ~ 2,147,483,647 (-2^31 ~ 2^31) long은 8byte 이고 값의 범위는 -9,223,372,036,854,775,808 ~ 9,223,372,036,8(-2^63 ~ ..
2023. 5. 19.
[MariaDB] 마리아 디비 테이블 생성, 수정, 삭제 create, alter, drop
마리아 디비에서 테이블 생성, 수정, 삭제 하는 sql 을 작성해본다. DDL(Data Definition Languate) 데이터 정의어라고 불리며 create, alter, drop 으로 작성할 수 있다. 테이블, 뷰, 프로시저 등 쿼리를 할 수 있으나 여기서는 테이블 관련해서만 작성한다. DB툴은 DBeaver를 사용했다. 1. Create create table user_info ( user_id int not null auto_increment comment '아이디', user_login_id varchar(100) not null comment '로그인 아이디', password varchar(100) not null comment '패스워드', user_name varchar(100) co..
2023. 5. 3.