목록전체 글 (151)
성장일기
●sudo apt-get 패키지 관리 프로그램 -> apt-get 성능은 소스를 빌드해서 설치하는것이 가장 좋음(현재 시스템에 맞는 결과물) 파이썬과 Maria 데이터베이스 서버 Connection
https://opentutorials.org/module/779/7087 LED는 20~50mA(0.02~0.05A)정도의 전류가 흐른다(이상 흐를 시 탐) LED 저항값 계산하기 - 전자공학도들 스터디 최소 구동 전압과 최대 구동 전압 LED는 최소 구동전압과 최대 구동전압이 있다. 최소 구동 전압보다 낮으면 흐리게 빛이 나고 최대 구동 전압보다 높으면 LED가 파손된다. 이를 표로 나타내면 아� opentutorials.org www.ciokorea.com/news/29239 리눅스 초보자가 익혀야 할 12가지 명령어 오늘날 리눅스 사용자라도 꼭 필요한 때가 아니면 명령어를 직접 입력할 필요가 없다는 것은 리눅스가 얼마나 변화했는지를 보여주는 증거이다. 이미 많은 현대적인 리눅스 배포판의 GUI는 ..
using System; public class Mathematics { delegate int CalcDelegate(int x, int y); static int Add(int x, int y) { return x + y; } static int Sub(int x, int y) { return x - y; } static int Mul(int x, int y) { return x * y; } static int Div(int x, int y) { return x / y; } CalcDelegate[] methods; public Mathematics() // 생성자 { methods = new CalcDelegate[] { Mathematics.Add, Mathematics.Sub, Mathemati..
(Add와 Div의 변수이름이 같아도 되지만 임의로 3,4로 설정했음) 메소드를 가리키는 타입 : delegate 델리게이트를 쓰면 반복문도 만들 수 있다 using System; public class Mathmatics { delegate int CalcDelegate(int x, int y); static int Add(int x, int y) { return x + y; } static int Subtract(int x, int y) { return x - y; } static int Multiply(int x, int y) { return x * y; } static int Divide(int x, int y) { return x / y; } CalcDelegate[] methods; publi..
https://github.com/hyojeong00/TraningPython hyojeong00/TraningPython training Python. Contribute to hyojeong00/TraningPython development by creating an account on GitHub. github.com 변수 선언이나 system, using, class ,Console.WriteLine 등이 필요하지 않다 숫자를 입력받아(int를 input) a에 그 값을 넣는다 %d는 %뒤에 선언한 hap값이 대입