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