블로그
-
한국 현대 도시건축의 풍경: 어번 보이드에서 도시의 목가성으로
한국 현대 도시건축의 풍경: 어번 보이드에서 도시의 목가성으로 Architectural Landscape in Contemporary Korea: from Urban Void to Alberti, De re aedificatoria, 15th C) 새천년의 전환점을 전후로 조성이 시작된 파주 출판도시와 헤이리 아트밸리는 한국 건축사에서 여러모로 뜻 깊다.
blog.naver.com · 2021.02.07
-
[예시] java 기본법 (9)
package Basic_STD; public class Main_Ex3 { public static void main(String[] args) { /* * 암시적 형 변환 */ int a = 3; float b = 1.0F; double c = a + b; System.out.println(c); /* * 명시적 형 변환 */ float a1 = (float
blog.naver.com · 2020.11.03
-
(iOS) WKWebview keyboardDisplayRequiresUserAction 설정하기
-> Void typealias NewerClosureType = @convention(c) (Any, Selector, UnsafeRawPointer, Bool, Bool, -> Void extension WKWebView{ var keyboardDisplayRequiresUserAction: Bool?
blog.naver.com · 2019.10.23
-
위상 정렬 프로그램 - 연결된 큐
graph_init(GrapeType *g) { int r, c; g->n = 0; for (r = 0; r < MAX_VERTICES; r++) { for (c = 0 ; c < MAX_VERTICES; c++) { g->adj_mat[r][c] = 0; } } } void insert_vertex(GrapeType *g, int v)
blog.naver.com · 2018.12.07
-
18.12.05 JAVA
[] = new String[30]; int [] k = new int[30]; int [] e = new int[30]; int [] m = new int[30]; int [] c i]=sc.nextInt(); s[i]= k[i]+e[i]+m[i]+c[i]; i++; } while(i
blog.naver.com · 2018.12.05
-
18.09.16
this.y=y; this.color_R=color_R; this.color_G=color_G; this.color_B=color_B; this.count=count; } public void paintComponet(Graphics g) { //컴포넌트를 다시 그릴때 Color c = new Color(color_R, color_G, color_B); g.setColor
blog.naver.com · 2018.09.16
-
자료구조 스택 활용 미로탐색 프로그램
#include #include #define MAX_STACK_SIZE 100 #define MAX_SEIZE 6 typedef struct { int r; int c; }element here = { 1,0 }, entry{ 1,0 }; typedef struct { element stack[MAX_STACK_SIZE]; int top; }StackType; void
blog.naver.com · 2018.08.12
-
자바) 실습)2차방적식의 계수를 입력받아 근을 출력
2차방정식 계수 입력:1 1 2 package asda; import java.util.Scanner; public class sdadsadasdsa { public static void 입력:"); a=Sc.nextDouble(); b=Sc.nextDouble(); c=Sc.nextDouble(); D=b*b-4*a*c;//판별식 if(D
blog.naver.com · 2018.03.16
-
자바) 실습) 세정수 a,b,c 입력받아, 최대수 출력
(); b=Sc.nextInt(); c=Sc.nextInt(); if(a>b) if(a>c) System.out.println("최대수="+a); else System.out.println ("최대수="+c); else if(b>c) System.out.println("최대수"+b); else System.out.println("최대수"+c);
blog.naver.com · 2018.03.16
-
18.03.09 Java
import java.util.Scanner; public class A { public static void main(String[] args) { int a,b; Scanner main(String[] args) { int a,b; double c,d,e; Scanner sc = new Scanner(System.in); System.out.print("
blog.naver.com · 2018.03.09