반응형
[math.h] fmod, fmodf, fmodl 함수 사용 예제 코드, 분자와 분모를 입력받아 몫과 나머지 계산
//C언어 표준 라이브러리 함수 가이드
//double fmod(double x, double y); 나머지
//float fmodf(float x, float y); 나머지
//long double fmodl(long double x, long double y); 나머지
//분자와 분모를 입력받아 몫과 나머지 계산
#include <math.h>
#include <stdio.h>
int main(void)
{
double numerator, denominator;
printf("분자와 분모를 입력: ");
scanf_s("%lf %lf",&numerator, &denominator);
printf("몫: %.lf ",floor(numerator/denominator));
printf("나머지: %f \n",fmod(numerator, denominator));
return 0;
}
출력
분자와 분모를 입력: 8.35 3.1 (입력)
몫: 2 나머지: 2.150000
프로그래밍 언어 및 기술 학습, 무료 동영상 강의 언제나 휴일 티스토리
반응형
'C언어 > C언어 예제' 카테고리의 다른 글
[math.h] asinh, asinhf, asinhl 함수 사용 예제 코드, 쌍곡선 arc sine 함수 (0) | 2016.05.10 |
---|---|
[math.h] acosh, acoshf, acoshl 함수 사용 예제, 쌍곡선 arc cosine 함수 (0) | 2016.05.09 |
[math.h] floor, floorf, floorl 함수 사용 예제 코드, 소수점 이하 자리 버림 (0) | 2016.05.09 |
[math.h] ceil, ceilf, ceill 함수 사용 예제 코드, 소수점 첫번째 자리에서 올림 (0) | 2016.05.09 |
[math.h] hypot, hypotf, hypotl 함수 사용 예제 코드, 직각 삼각형의 빗변의 길이 계산 (0) | 2016.05.09 |