반응형
[math.h] floor, floorf, floorl 함수 사용 예제 코드, 소수점 이하 자리 버림
//C언어 표준 라이브러리 함수 가이드
//double floor(double x); 내림
//float floorf(float x); 내림
//long double floorl(long double x); 내림
//국어, 영어, 수학 성적을 입력받아 합계, 평균(내림) 계산
#include <math.h>
#include <stdio.h>
int main(void)
{
int scores[3],i,sum=0;
printf("국어 영어 수학 성적: ");
for(i=0;i<3;i++)
{
scanf_s("%d",scores+i);
sum += scores[i];
}
printf("합계: %d 평균(내림): %.lf\n",sum, floor(sum/3.0));
return 0;
}
출력
국어 영어 수학 성적: 81 81 80 (입력)
합계: 242 평균(내림): 80
프로그래밍 언어 및 기술 학습, 무료 동영상 강의 언제나 휴일 티스토리
반응형
'C언어 > C언어 예제' 카테고리의 다른 글
[math.h] acosh, acoshf, acoshl 함수 사용 예제, 쌍곡선 arc cosine 함수 (0) | 2016.05.09 |
---|---|
[math.h] fmod, fmodf, fmodl 함수 사용 예제 코드, 분자와 분모를 입력받아 몫과 나머지 계산 (0) | 2016.05.09 |
[math.h] ceil, ceilf, ceill 함수 사용 예제 코드, 소수점 첫번째 자리에서 올림 (0) | 2016.05.09 |
[math.h] hypot, hypotf, hypotl 함수 사용 예제 코드, 직각 삼각형의 빗변의 길이 계산 (0) | 2016.05.09 |
[math.h] frexp, frexpf, frexpl 함수 사용 예제 코드 , 지수와 가수 계산 (0) | 2016.05.09 |