Saturday, April 28, 2007
C언어] 이번달은 몇 분기? 몇 사분기 판단 함수; Quarter of the Year
이달이 일년 중에서, 몇 분기에 해당하는지 구하는 함수입니다.
그런데 다음 예제에서, "현재 달"을 구하는 함수 currentMonth() 는, 비주얼C 2005 이상에서만 작동합니다.
소스 파일명: example.cpp
▶▶ C언어] 현재 날짜/시간/년월일,시분초 구하기 함수(오늘 날짜 시간): Current Date, Time
그런데 다음 예제에서, "현재 달"을 구하는 함수 currentMonth() 는, 비주얼C 2005 이상에서만 작동합니다.
분기, 사분기 구하기 예제 소스
소스 파일명: example.cpp
#include <stdio.h>
#include <math.h> // ceil
#include <time.h>
int quarterYear(int month);
int currentMonth(void);
int main(void) {
//////////////////////////////////////////////
// 이번 달이 몇 분기인지 구하기
//
int quarter = (int) ceil( currentMonth() / 3.0 );
printf("이번 달은 %d월이고, %d분기입니다\n", currentMonth(), quarter);
// 이번 달이 4월이면:
// "이번 달은 4월이고, 2분기입니다"라고 출력됨
//////////////////////////////////////////////
// 지정한 특정 달이 몇 분기인지 구하기
//
// 7월달은 몇 분기?
printf("%d분기\n", quarterYear(7));
// 3분기
// 10월달은 몇 분기?
printf("%d분기\n", quarterYear(10));
// 4분기
return 0;
}
// 특정 달을 입력하면,
// 그 달에 해당되는 분기가 반환되는 함수
int quarterYear(int month) {
return (int) ceil( month / 3.0 );
}
// 현재 월 반환 함수
// 비주얼C 2005 이상에서 작동
int currentMonth(void) {
time_t timer;
struct tm t;
timer = time(NULL); // 현재 시각을 초 단위로 얻기
localtime_s(&t, &timer); // 초 단위의 시간을 분리하여 구조체에 넣기
return t.tm_mon + 1; // 현재 월만 반환
}
#include <math.h> // ceil
#include <time.h>
int quarterYear(int month);
int currentMonth(void);
int main(void) {
//////////////////////////////////////////////
// 이번 달이 몇 분기인지 구하기
//
int quarter = (int) ceil( currentMonth() / 3.0 );
printf("이번 달은 %d월이고, %d분기입니다\n", currentMonth(), quarter);
// 이번 달이 4월이면:
// "이번 달은 4월이고, 2분기입니다"라고 출력됨
//////////////////////////////////////////////
// 지정한 특정 달이 몇 분기인지 구하기
//
// 7월달은 몇 분기?
printf("%d분기\n", quarterYear(7));
// 3분기
// 10월달은 몇 분기?
printf("%d분기\n", quarterYear(10));
// 4분기
return 0;
}
// 특정 달을 입력하면,
// 그 달에 해당되는 분기가 반환되는 함수
int quarterYear(int month) {
return (int) ceil( month / 3.0 );
}
// 현재 월 반환 함수
// 비주얼C 2005 이상에서 작동
int currentMonth(void) {
time_t timer;
struct tm t;
timer = time(NULL); // 현재 시각을 초 단위로 얻기
localtime_s(&t, &timer); // 초 단위의 시간을 분리하여 구조체에 넣기
return t.tm_mon + 1; // 현재 월만 반환
}
▶▶ C언어] 현재 날짜/시간/년월일,시분초 구하기 함수(오늘 날짜 시간): Current Date, Time
tag: cpp
C언어 | C/C++ (Visual C++)
<< Home