본문 바로가기

728x90
반응형

프로그래밍

(122)
[자바] 정올 130 ~ 139 : 반복제어문2 - 형성평가1 ~ 10 형성평가1 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); for (int i = 0; i < a; i++) System.out.println("JUNGOL"); } } 형성평가2 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(), b = sc.nextInt(); int min = a < ..
[자바] 정올 541 ~ 548 : 반복제어문2 - 자가진단 1 ~ 8 자가진단1 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.nextLine(); System.out.println(a.repeat(20)); } } 자가진단2 public class Main { public static void main(String[] args) { for(int i = 10; i
[자바] 정올 129 : 반복제어문1 - 형성평가5 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int base, height; char contin = 'y'; while(contin == 'y' || contin == 'Y'){ System.out.print("Base = "); base = sc.nextInt(); System.out.print("Height = "); height = sc.nextInt(); System.out.printf("Triangle width = %.1f\n", (double)(base*height)/2); sc.nextLine(); System.o..
[자바] 정올 128 : 반복제어문1 - 형성평가4 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int i, sum=0, count = 0; while(true){ i = sc.nextInt(); if(!(i >= 0 && i
[SWEA] 파이썬 SW문제해결 기본 - List1 알고리즘이란 - 유한한 단계를 통해 문제를 해결하기 위한 절차나 방법 슈도코드 : 일반적인 언어로 코드를 흉내내어 알고리즘을 써 놓은 코드 (실행 불가) 순서도 : 프로그램이나 작업의 진행 흐름을 순서에 따라 여러가지 시호나 문자로 나타낸 도표 성능 (Brute-force) - 모든 경우의 수를 테스트 하고 최종 해법을 도출하기 때문에 속도는 느리지만 해답을 찾지 못할 경우가 적음 - Permutation : 순열로 서로다른 몇개를 뽑아서 한 줄로 나열한 것 탐욕 알고리즘 => Greedy - 여러 경우중 하나를 선택할 때 마다 그 순간에 최선이라고 생각하는 것을 지속적으로 선택하는 방식 정렬 버블 정렬 카운팅 정렬 선택 정렬 퀵 정렬 삽입 정렬 등등이 있음 [관련 내용들을 정리할때마다 추가할 예정] 6..
[자바] 정올 127 : 반복제어문1 - 형성평가3 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int i, sum=0, count = 0; while(true){ i = sc.nextInt(); if(!(i >= 0 && i
[자바] 정올 126 : 반복제어문1 - 형성평가2 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int even = 0; int odd = 0; int i; while(true){ i = sc.nextInt(); if(i==0) break; if(i % 2 == 0) even++; else odd++; } System.out.println("odd : " + odd); System.out.println("even : " + even); } }
[자바] 정올 125 : 반복제어문1 - 형성평가1 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); for(int i = 1; i

728x90
반응형