드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
게시물ID : computer_96320짧은주소 복사하기
작성자 : Leciel★
추천 : 1
조회수 : 274회
댓글수 : 5개
등록시간 : 2013/07/08 20:00:12
#include<stdio.h>
int main(){
float a=31.43;
float b=31.5;
double c=31.43;
double d=31.5;
if(b==31.5){
printf("True\n");
}
else
printf("False\n");
if(a==31.43){
printf("참\n");
}
else
printf("거짓\n");
if(d==31.5){
printf("True\n");
}
else
printf("False\n");
if(c==31.43){
printf("참\n");
}
else
printf("거짓\n");
return 0;
}
이코드 실행시 모두 참이 아니라,
True
거짓
True
참
이 나오는데, 왜그런건가요?ㅠㅠ
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.