일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 괄호 유효성
- rest graphql
- golang
- 스택 유효성
- 후위수식
- 스택 삭제
- 스택 괄호
- 자료구조 데크
- 중위수식
- rest gql
- 괄호 짝 잘맞는지
- 장고 하는법
- grid flex
- 스택 자료구조
- flex html
- 중위수식을 후위수식
- 풀스택
- 장고 웹 만들기
- 풀스택?
- grid html
- 스택 후위수식
- restapi graphql
- 데크 구현
- 스택 구현
- go
- 루비 초보
- Django tutorial
- 스택 삽입
- 스택 중위수식
- https://stackoverflow.com/questions/219110/how-python-web-frameworks-wsgi-and-cgi-fit-together/219124#219124
- Today
- Total
목록분류 전체보기 (59)
donchanee
BGP (Border Gateway Protocol) is protocol that manages how packets are routed across the internet through the exchange of routing and reachability information between routers. Border Gateway Protocol (BGP) is a standardized exterior gateway protocol designed to exchange routing and reachability information between autonomous systems (AS) on the Internet. The protocol is often classified as a pat..
Internet Protocol version 6 (IPv6) refers to the next-generation Internet protocol as a protocol of the network layer. The Internet has been deployed with IPv4 protocols, but the limited address space of the IPv4 protocol(32 bits) occurs and the limit of the country's allocation of addresses is almost exhausted. As an alternative to this, IPv6 protocols have been proposed, international standard..
The Domain Name Server (DNS) is a fundamental component of the Internet: it maps host names to IP addresses (and vice-versa). DNS is a host name to IP address translation service. DNS is a distributed database implemented in a hierarchy of name servers. It is an application layer protocol for message exchange between clients and servers. 도메인 네임 서버. (1). Ask IP address for www.sejong.ac.kr to ISP..
이어서, 결과로 나온 배열에 다시 2단계 배열 문제 #6.를 계속 적용하여 전체 N개의 정수 중 가장 큰 수, 가장 작은 수가 남을 때 까지 반복하는 프로그램을 작성하시오. 풀이는 다음과 같다. 문제 #6 의 풀이를 그대로 가져다 수정하였다. #include int main(void){ int N, i, j, a[20], b[20]; int max_a[20], min_b[20], max, min, cnt; scanf("%d", &N); for(i=0;i=0;i--) printf(" %d", a[i]); printf("\n"); while(1) { cnt=0; for(i=0;i
위와같은 문제이다. 정수를 입력받아 거꾸로 출력한 뒤, 3개씩 묶어 그 세개의 숫자 중 가장 큰수, 가장 작은수를 출력하는 문제이다. #include int main(void){ int N, i, j, a[20]; int max_a[20], min_a[20], max, min, cnt; scanf("%d", &N); for(i=0;i=0;i--) printf(" %d", a[i]); printf("\n"); cnt=0; for(i=0;i
- 사용자에게서 입력받을 정수의 개수 N을 입력 받는다. 4≦N≦10 - 사용자에게서 정수 N 개를 입력 받아 배열 x[ ]에 저장하시오. - 배열에 저장된 입력받은 정수 중 두 번째로 큰 정수와 두 번째로 작은 정수를 출력하시오. 이 문제는 첫 번째로 큰 정수와 첫 번째로 작은 정수가 아닌 두 번째의 정수들을 출력하는 문제이다. #include int main(void){ int x[10], y[10], i, j, N; scanf("%d", &N); for(i=0;i
문제 4번은 사용자로부터 정수 10개를 입력받은뒤, 각 정수가 몇번 등장했는지 차례로 출력하는 문제이다. 입력받은 숫자와 총 입력 횟수를 함께 출력하는 것이 문제의 조건. 또한, 동일한 숫자에 대해서는 한 번만 출력한다. #include int main(void){ int x[10], i, j, flag=0, cnt; for(i=0;i
# 풀이 #include int main(void){ int x[6]={0}, i, N, coef, exp; scanf("%d", &N); for(i=0;i=0;i--) { if (x[i]!=0) printf("( %d %d )", x[i], i); } return 0;} x의 배열을 지수로 놓고, 숫자 2개를 입력받은뒤 지수숫자는 배열의 숫자로 대입하고, 계수숫자는 배열의 값으로 저장한다. 그 후, 배열을 양식에 맞게 출력하면 결과값이 나온다. 이에 추가되는 문제로 5-2번 문제가 있다. 이 문제는 5-1번 문제를 2번 입력받아서 겹치는 부분은 더하여 출력하고 겹치지 않는 부분은 출력하는 말하자면 함수의 합을 출력하는 문제이다. 이에 대한 풀이는 아래와 같다. #include int main(void)..