목록분류 전체보기 (385)
ITGenerations
1. 1~100 합 public class onetohundred { public static void main(String[] args) { final int num=100; System.out.println((num*(num+1))/2); } } 결과값5050 2. 1~100 곱import java.math.BigInteger; public class multiflex1to100 { public static void main(String[] args) { BigInteger big = new BigInteger("1"); for(int i=1; i
package e.ryan.day12_ryan; import android.app.DatePickerDialog; import android.app.TimePickerDialog; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.DatePicker; import android.widget.TextView; import android.widget.TimePicker; import java.util.Calen..
Special Purpose General Register-Program counter(r15 =pc)A Pointer to the instruction-Link Register(r14 = lr)To hold the address of the next instruction after a Branch will Register(2)Status Register-CPSR(Current Program Status Register) 현재 cpsr상태-SPSR(Saved Program Status Register) 이진모드의 cpsr 상태 n z c v i f t m4 m3 m2 m1 m031 32 29 28 8 7 65 4 3 2 1 0 N: Negative /Less ThanZ: ZeroC: Carry/Borro..
명품 C++ 연습문제 솔루션 필요하신분 비밀댓글로 이메일 주소 남겨주세요.
EMS개발 =S/W개발+H/W개발 H/W – 마이크로프로세서 지식 필요 S/W – 언어에만 신경쓰면 됌 H/W 타겟보드 학교 수업에서 진행하는 것은 S/W에 속함. Ex) 블랙박스/스마트전기밥솥 h/w – o/s가 무조건 있어야됨. 어떤 o/s? -> 리눅스 s/w – 1) 제일 먼저 해야할 일? --> 개발환경 구축 라즈베리파이 취급 -> 리눅스등등 타겟보드에 탑재 == 개발환경 구축 o/s 구축 완료 2) 응용 소프트웨어 개발 – 카메라를 예로 들면 촬영 및 저장하는 기능이 담긴 소프트웨어 개발(어플리케이션 소프트웨어 개발이라고도함) 3) 외부 디바이스를 타겟보드에 연결한다. 4) 디바이스 드라이버 사용환경 구축(설치) 수업은 소프트웨어 개발 Ex) 그래픽 카드(gtx1080)를 사와서 구동을 한다고..