일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- almostIncreasingSequence
- C++
- Python
- collections.deque
- 파이썬머신러닝완벽가이드
- Numpy
- centuryFromYear
- baekjun
- All Longest Strings
- 수 정렬하기
- 백준
- til
- codesingal
- flask
- markdown
- 파이썬 포렌식
- shapeArea
- 2015 봄학기 알고리즘
- 피보나치 수
- Daily Commit
- recursion
- matrixElementsSum
- 2750
- 10953
- Sequential Search
- Counting cells in a blob
- cpp
- codesignal
- data_structure
- adjacentElementsProduct
- Today
- Total
목록Doing 80
Introfor
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374__author__="Introfor" """history: 2016/12/27 : Canvas flower START""" from Tkinter import * root = Tk()root.title("Canvas_Flower") xy_size =300 canvas = Canvas(root, bg="white", width = xy_size, height =xy_size) def corner(): n=0 for i in range(10): #1 coord ..
1234567891011121314151617181920212223242526272829303132333435__author__="Introfor" # -*-coding: utf-8 -*-# server.py import socketimport thread HOST = 'localhost'PORT = 50000 s = socket.socket()s.bind((HOST, PORT))s.listen(1) conn, addr = s.accept()print 'Connected by', addr data = '' def msg(): while 1: data = conn.recv(1024) if data: print data.lower() thread.start_new_thread(msg, ()) while 1:..
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253__author__ = "introfor"; /*history: 2016/11/30 Starting two-dimensions theater reservation system. Finished.*/ #include #define SIZE 10 int main() { char c = 0; int weight = 0, height = 0; int theater[SIZE][SIZE] = { 0 }; while (1) { printf("극장 좌석 예약 하시겠습니까?(y/n)"); scanf_s("%c", &c); if (c == 'y') {..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051__author__ = "introfor"; /*history: 2016/11/30 Starting one-dimension theater reservation system. Finished.*/ #include #define SIZE 10 int main() { char c = 0; int place = 0; int theater[SIZE] = { 0 }; while (1) { printf("극장 좌석 예약 하시겠습니까?(y/n)"); scanf_s("%c", &c); if (c == 'y') { printf("예매가능좌석\n"); pri..
2~9단 구구단을 아래와 같은 패턴으로 출력하시오.12345678910111213141516171819202122#include int main() { int i = 2, j = 1; while (1) { printf("%d * %2d = %2d ", i, j, i*j); i++; if (i == 10) { printf("\n"); i = 2; j++; } if (j == 10) break; } return 0;}Colored by Color Scriptercs