[모각코] 제 1회차 결과 2022. 6.30.(Thr) 아래 첨부한 사진과 같이 아이디어 회의와 주제에 대한 리스트를 정리하였다. 다들 패드나 종이로 각자의 앱 구현 아이디어를 내어 투표를 하여 모두 마음에 들고 구현 가능하며 합리적으로 잘 만들어낸 부분을 합쳐서 만들었다. 모두의 의견이 합쳐진 부분이라 더 좋았다. 목표 중 여러 부분 이상으로 성과를 거두어서 기분이 더 좋다. 또한, 여러 아이디어 중 다른 아이디어도 합쳐서 더 만들어볼 생각이다. GROUP_STUDY/2022 summer mogaco 2022.06.30
[모각코] 제 1회차 목표 2022. 6.30(Thr) 2022년 제 1차 모각코 모임. 팀원 : 장 한, 안형진, 유정훈, 정성훈, 김대민 1회차 계획 및 목표 : - 아이디어 회의 - 개발 주제 선정 및 토의 - Spring 개발 환경 구축 및 개발 맛보기 GROUP_STUDY/2022 summer mogaco 2022.06.30
C'est talentueux. han's main page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 han's main web page this is my reference Bienvenue sur la page html de Janghan. Prends ton temps pourregarderautour de vous. Colored by Color Scripter cs 아래는 위 html의 css 코드이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 .. Programming/htms\css 2022.03.04
margin, transition, absolute, relative position 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 han's main web page han's right, and bottom position han's workplace red blue green Colored by Color Scripter cs 아래는 위 코드에 대한 css 코드이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 6.. Programming/htms\css 2022.03.04
Initial setting && div, border, id, class, link, image, font 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 han's practice web page naver janghan's tistory this is myform from css this is red from css this is border from css check your brain in this area Colored by Color Scripter cs 아래는 위 htmld의 css 코드이다. url을 import하여 font를 가져왔다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34.. Programming/htms\css 2022.03.04
파일 입출력 1 2 3 4 #define _CRT_SECURE_NO_WARNINGS #include #define MAX 10000 cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 int main(void){ // 파일 입출력 // 파일에 어떤 데이터를 저장. // 파일에 저당된 데이터를 불러오기. // fputs, fgets 하나의 쌍 -> 문자열 저장 char line[MAX]; // char line[10000] // 파일에 쓰기 FILE * file = fopen("/Users/janghan/Desktop/Programming/c/test1.txt", "wb"); // r 읽기전용 w 쓰기전용 a 이어쓰기 + // t txt. b binary d.. Programming/C\C++ 2022.03.04
struct 구조체 1 2 3 #include #include #include cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 int main(void){ // [game 출시] // 이름 : 나도게임 // 발매년도 : 2017년 // 가격 : 50원 // 제작사 : 나도회사 char * name = "나도게임"; int year = 2017; int price = 50; char * company = "나도회사"; // [또다른 game 출시] // 이름 : 너도게임 // 발매년도 : 2017년 // 가격 : 100원 // 제작사 : 너도회사 char * name2 = "너도게임.. Programming/C\C++ 2022.03.04
MultiDimensional Array 1 2 3 #include #include #include cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 int main(void){ // 다차원 배열 Multidimensional Array int i; // ㅁ int arr[5]; // ㅁㅁㅁㅁㅁ // [0][1][2][3][.. Programming/C\C++ 2022.03.04
*포인터* 1 2 3 #include #include #include cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 int main(void){ // 포인터 //철수 : 101호 -> 메모리 공간의 주소 //영희 : 201호 //민수 : 301호 //각 문 앞에 '암호'가 다음과 같이 걸려 있음. int jame = 1; int piter = 2; int mesk = 3; printf("jame네 주소 : %d, 암호 : %d\n", &jame, jame); printf("piter네 주소 : %d, 암호 : %d\n", &piter,piter ); printf("mesk네 주소 : %d, 암호 : %d\n.. Programming/C\C++ 2022.03.04
Initial Array && ASCII 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 #include #include #include int main(void){ // 배열 int subway_1 = 30; int subway_2 = 40; int subway_3 = 50; printf("지하철 1호차에 %d명이 타고 있습니다.", subway_1); printf("지하철 2호차에 %d명이 타고 있습니다.", subway_2); printf("지하철 3호차에 %d명이 타고 있습니다.", subway_3); int subway_array[3]; // [0][1][2] subway_array[0] = 30; subway_array[1] = 40; subway_array[.. Programming/C\C++ 2022.02.25