오라클 데이터베이스 11g를 설치하는 과정 https://www.oracle.com/technetwork/database/enterprise-edition/downloads/index-092322.html Oracle Database Software Downloads | Oracle Technology Network | Oracle Thank you for accepting the OTN License Agreement; you may now download this software. Oracle Database 19c (19.3) Oracle Database 18c (18.4) (18.3) Oracle Database 12c Release 2 (12.2.0.1.0) - Standard Edition 2..
#include int Num[41]; //N은 40보다 작거나 같은 자연수 또는 0이다. int fibonacci(int n) { if(n 0) { int input; scanf("%d", &input); if(input == 0) { printf("%d %d\n", 1, 0); } else if(input == 1) { printf("%d %d\n", 0, 1); } else { fibonacci(input); printf("%d %d\n", Num[input-1], Num[input]); } } return 0; } 그냥 피보나치 문제
코드 #include void swap(int a, int b){ int t; t = a; a = b; b = t; } int main(){ int x1, x2, y1, y2, r1, r2; int T, distinct, numIntersection = 0; scanf("%d", &T); for(int i = 0; i < T; i++){ scanf("%d %d %d %d %d %d", &x1, &y1, &r1, &x2, &y2, &r2); distinct = (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2); if(r1 < r2){ swap(r1, r2); } if(distinct == (r1 + r2) * (r1 + r2)){ numIntersection = 1; // ..
로그인시 DB에 데이터 존재 여부를 확인하여 아이디가 없다 or 비밀번호가 없다 or 일치하지 않는다. 라고 alter 메세지가 뜨게된다. 회원가입 화면도 구현 하였는데 데이터를 전부 입력시 mysql에 데이터가 넘어가고 로그인이 가능해 진다.
간단하게 A와 B를 입력 받고 빼는 문제이다. #include int main(){ int A,B,sum; scanf("%d",&A); scanf("%d",&B); sum = A-B; printf("%d",sum); }
요즘 알고리즘이 되게 중요한것 같아서 하루에 하나씩을 풀어보고자 한다. 알고리즘을 처음 접하기에 하나하나 처음부터 풀어보고자 한다. https://www.acmicpc.net/ 문제 - 1 페이지 www.acmicpc.net 간단하게 A와 B를 입력 받고 더하여 합을 출력 하는 문제이다. #include int main(){ int A,B,sum; scanf("%d",&A); scanf("%d",&B); sum = A+B; printf("%d",sum); }
#include #include #include #include #define ASC 0 #define DSC 1 const int TRUE = 1; const int FALSE = 0; using std::cout; using std::cin; using std::endl; typedef struct fruit{ int id; char name[20]; int price; struct fruit *link; }Fruit; int addHead(Fruit **head, int id, char *name, int price); int removeHead(Fruit **head); int removeAll(Fruit **head); void printList(Fruit *head); int getId(Fru..
06부터 15년 1회차까지 와 17년 있습니다. http://pf.kakao.com/_KxexaRT 위 링크의 플러스 친구추가후 대화창에 pw를 문의해주세요. (여기 댓글 잘 못봅니다. 플러스친구로 해주세요) pw 받으시고 여기에 댓글을 달아주시면 추가 자료도 드립니다~~ - 추가자료란 과목별 빈칸문제, 요약정리 등등 모니터랑 할수 없기에 13시20분 || 저녁 22시00분 에 답장보내드리겠습니다.
보호되어 있는 글입니다.
블로그에 내가 운영중인 카카오 플러스친구를 추가 하여보았다. ↑플러스 친구 홈화면 ↑기존화면 블로그 홈화면 ↑플러스친구 친구추가 버튼 화면 추가화면 친구추가시 플러스친구를 친구추가 할 수 있게된다. -추가방법- https://developers.kakao.com/docs/js/plusfriend Kakao Developers_ 더 나은 세상을 꿈꾸고 그것을 현실로 만드는 이를 위하여 카카오에서 앱 개발 플랫폼 서비스를 시작합니다. developers.kakao.com 우선 카카오에서 제공하는 플랫폼을 이용하였다. 이렇게 버튼추가하는 소스코드가 제공된다. 원하는곳에 추가를 하면되는데 plusFriendId:라고 된 부분에 본인의 카카오플러스 친구 id를 입력하게되면 추가가된다. 아! 티스토리에서 추가하고싶..