Algorithm/정보올림피아드

정올 - 입력 - 자가진단1

tube_doit 2015. 2. 1. 17:02


정수형 변수를 선언하고 -100을 대입하여 출력하는 프로그램을 작성하라.

-100

#include <stdio.h>

int main (){
	int a= -100;
	printf("%d",a);

return 0;
}