Computer/Information2019. 6. 9. 12:18


Posted by ikSkyLand
Computer/Information2019. 4. 28. 14:32

컨트롤 누르고 하나 하나 개체를 선택하는건 너무 힘들다.

 

 

홈(home) - 오른쪽 끝에 선택(select) 개체선택(select object) 클릭하면 아래와 같이 내가 원하는 개체를 드레그 하면 전체 선택 됩니다.

 

그 다음 그룹화 하시면 끝..

 

 


Posted by ikSkyLand
Computer/C programing2019. 4. 7. 15:54

 

#include <stdio.h>

int main(void)
{
	while (1)
	{
		char va1, va2, re1;

		printf("음수를 양수로 바꾸어 드립니다 : ");
		scanf_s("%d", &va1);

		va2 = ~va1;
		re1 = va2 + 1;

		printf("%d\n", re1);


	}
		return 0;
	
}

2의 보수를 이용하여 음수를 양수로 바꾸는 c언어 소스입니다.


Posted by ikSkyLand