코딩을 한단계씩 부셔보자.

코딩을 한단계씩 부셔보자.

  • 분류 전체보기 (319)
    • 코딩배움일지 (157)
      • JAVA (79)
      • DataBase (29)
      • Web 구현 (34)
      • 인터페이스 구현 (15)
    • 개인적인 공부 (142)
      • 자바 (6)
      • 백준 (47)
      • Java의 정석 (0)
      • 그냥정리 (2)
      • Database 복습 (5)
      • 테스트 페이지 (1)
      • 프론트엔드 (7)
      • Unity (29)
      • Python (45)
    • TeamProjectHappy (12)
      • front (9)
      • database (3)
    • 개발일지 (2)
      • Journey to West (2)
  • 홈
  • 배움기록
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

코딩을 한단계씩 부셔보자.

컨텐츠 검색

태그

왕초보 javabasic java Python CSS SQL 2D 백준 Web unity javascript 자바기초 java기초 파이썬 html 유니티 배열 c# 자바 database

최근글

댓글

공지사항

아카이브

java(139)

  • A × B

    10998번 문제 public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a, b; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a * b); sc.close(); } } 5 6 30

    2022.11.12
  • A-B

    문제 1001번 public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a, b; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a - b); sc.close(); } } 출력 3 2 1

    2022.11.12
  • A+B

    문제 1000번 public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a, b; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a + b); sc.close(); } } 출력 1 2 3

    2022.11.12
  • Hello World! 를 출력하시오.

    문제 2557번 public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } } Hello World!

    2022.11.12
  • JAVA 2일차 조건문

    public class Condition { public static void main(String[] args) { int num = 10; if(num100){ System.out.println("잘못된 점수입니다."); }else if(score >89){ System.out.println("A학점"); }else if(score>79){ System.out.println("B학점"); }else if(score>69){ System.out.println("C학점"); } else if (score>59) { System.out.println("D학점"); } else{ System.out.println("F학점"); } /* 점수가 0보다 작거나 100보다 크면 잘못된 점수입니다. 출력 90~10..

    2022.11.11
  • JAVA 2일차 스캐너

    import java.util.Scanner; public class Input1 { public static void main(String[] args) { String name = null; int age = 0; String phone = null; String address = null; Scanner scanner = new Scanner(System.in); /*Scanner 참조 자료형 scanner 변수명 */ /* 입력 중 nextLine()은 엔터를 기준으로 다음줄로 날리기 때문*/ /* nextInt()메소드를 실행 할 때 입력값을 콘솔에 입력하고 엔터를 누를때 입력값을 리턴시켰지만 Enter값은 그대로 남아있다. nextLine() 메소드는 Enter값을 기준으로 메소드를 종료시키기..

    2022.11.11
이전
1 ··· 19 20 21 22 23 24
다음
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바