본문 바로가기

전체 글71

쉽게 풀어쓴 C언어 익스프레스 프로그래밍 10장 3번 #include #define SIZE 10 int array_equal(int a[], int b[],int size); int main(void) { int result = 0; int a[SIZE] = { 0,1,2,4,5,6,7,8,9 }; int b[SIZE] = { 0,1,2,3,4,5,6,7,8 }; result = array_equal(a,b,SIZE); if (array_equal(a,b,SIZE) == SIZE) printf("두 배열이 같습니다.\n"); else printf("두 배열이 다릅니다.\n"); return 0; } int array_equal(int a[], int b[],int size) { int result = 0; for (int i = 0; i 2019. 11. 14.
쉽게 풀어쓴 C언어 익스프레스 프로그래밍 10장 2번 #include #include #include int main(void) { int x[10] = { 0 }; int minimum, maximum; srand((unsigned)time(NULL)); for (int i = 0; i 2019. 11. 14.
쉽게 풀어쓴 C언어 익스프레스 프로그래밍10장 1번 #include int main(void) { int days[] = { 31,29,31,30,31,30,31,31,30,31,30,31 }; int i = 0; printf("월을 입력: "); scanf_s("%d", &i); for (int a = 0; a 2019. 11. 14.
미니 토끼 침대 무드등 2019. 6. 23.
cura 다운로드-설치 사이트 https://ultimaker.com/en/products/ultimaker-cura-software 2019. 6. 22.
fusion 360 설치 사이트 https://www.autodesk.com/products/fusion-360/students-teachers-educators?mktvar004=668081&internalc=true Fusion 360 | Free Software for Students and Educators | Autodesk Free for students, teachers and educators, Fusion 360 is everything you need for design, engineering and collaboration. Works on both Mac and PC. www.autodesk.com 가입을 먼저해야합니다. 2019. 6. 22.
동아리 아두이노 음성 인식 보드 및 소스 https://pinkwink.kr/1111 음성 인식이 되는 아두이노 - ArduVoice 아두보이스 아주 예전에 어떤 필요에 의해 칼만필터를 공부해야하는 상황이 있었습니다. 다 까먹었는데.. 또 다시 지금 칼만을 손대야하는 슬픔도 있지만.. 뭐 여하튼.. 칼만이라는 아이... 정말 정이 가질 않았습니다. 어찌.. pinkwink.kr 아두이노 diyhttps://lifeonroom.com/category/diy/ DIY Category - 라이프온룸 아두이노, NodeMCU, Alexa, Beaglebon, Python 등을 이용한 실생활에 쓸만한? 기기 및 Tool 제작 lifeonroom.com 음성인식로봇 구글 https://www.youtube.com/watch?v=0.. 2019. 5. 23.
인덕터 커패시터에 대하여 https://k96-ozon.tistory.com/54 https://k96-ozon.tistory.com/55 https://m.blog.naver.com/anniy7/220661104373 http://www.rfdh.com/bas_rf/begin/lc.htm https://m.blog.naver.com/PostView.nhn?blogId=cj3024&logNo=221370402291&categoryNo=32&proxyReferer=http%3A%2F%2Fwww.google.com%2F 2019. 4. 25.
반응형