Computer/C programing2019. 4. 7. 01:04

 

#include <stdio.h>

void bin_printf(char in);

void main(void)
{
	while (1)
	{
		char c;
		int i;

		printf("-127 ~ 0 사이의 숫자를 입력 하세요 : ");
		scanf_s("%d", &i);
		c = (char)i;
		bin_printf(c);
		c = ~c;
		bin_printf(c);
		c = c + 1;
		bin_printf(c);
		printf("%d\n", c);
		
	}
	

}

void bin_printf(char in)
{
	for (int i = 7; i >= 0; i--)
	{
		printf("%d", (in >> i) & 1);
	}
	printf("\n");
}

 

 

8비트 코드도 있어서 편할겁니다.

 

 


Posted by ikSkyLand
카테고리 없음2019. 3. 27. 19:45

200 330 510 옴 시뮬레이션

 

 

300 510 1.2k 옴 시뮬레이션

 

 

표 3-5에 필요한 시뮬레이션


Posted by ikSkyLand
Computer/Information2019. 3. 26. 21:01



맨날 킬때마다 뜨는게 너무 짜증나서 해결하는 방법 찾아서 이렇게 기록으로 남깁니다. 




먼저 https://education.ti.com/en/software/details/en/82035809F7E6474099944056CCB01C20/ti-nspire_computerlink 

위 링크로 가서 TI-Nspire Computer Link Software for windows (exe)를 다운 받습니다.


그 다음 yes yes 광클 하면서 설치 합니다.


그 다음 TI-nspire CX CAS와 컴퓨터를 USB로 연결합니다.

(단 컴퓨터 본체에 있는 USB 포트를 이용하세요 저같은 경우 USB 허브에 꽂으니 인식이 안되더라구요...)


그 다음 메모장을 키고 아무것도 쓰지 말고 다른이름으로 저장 누르시고

파일 타입은 모든파일로 바꾸신 후

Exit Test Mode.tns

위 이름으로 저장 하시면 됩니다.



그 다음 아까 설치한 프로그램을 실행 시켜줍니다.


아까 메모장으로 만들어준 파일을 찾아서 오른쪽 클릭후 Send to handheld 를 눌러주고 전송이 완료되면 재부팅 되면서 더이상 press-to-test는 안나오게 됩니다.



이상입니다.


Posted by ikSkyLand