2626

Posted at 2013. 10. 15. 14:32 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

int i;

float f;

double d;


i=(long)('a'+1.3); 

f=2.49+i;   

d=(double)f*i;   


// 데이터 손실 여부를 확인하기 위해 출력해 봅니다.

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

printf("%lf \n", f);

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

}



'2학기 > C언어' 카테고리의 다른 글

28  (0) 2013.10.15
27  (0) 2013.10.15
25  (0) 2013.10.15
24  (0) 2013.10.15
23  (0) 2013.10.15
//