Contents

Develop
2003.04.23 09:45

[c] 소수점 반올림^^

조회 수 8478 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

# 소수점 반올림 간단 예제

#include<stdio.h>
#include<conio.h>
#include<stdio.h>

int gcd(int m, int n) {
    if (m<=0) return 0;
    if (n<=0) return 0;

    while(m != n}){
        if (m>n) m = m - n;
        else n = n - m;
    }

    return n;
}

void main(){
    float num,tmp;

    printf("Enter a float Number : ");
    scanf("%f",&num);

    tmp=(num*10);
    tmp=(tmp-(int)tmp)/10;

    if(tmp>=0.05) num=num+(0.10-tmp);

    printf("%fn",num);
}

void main(){
    int a,b;

    printf("Enter a first Number : ");
    scanf("%d",&a);

    printf("Enter a second Number : ");
    scanf("%d",&b);

    printf("GCD is %d",gcd(a,b));
    getch();
} 


?

  1. [c++] p.47 연습문제 3번

  2. [opengl] 컴퓨터 그래픽스 강의 자료(수업자료)

  3. [c] 그래픽스 자료(OpenGL 라이브러리) 샘플 소스

  4. [c] 간단한 채팅(클라이언트/서버) 프로그램 소스

  5. [c] 팩토리얼.. - 재귀함수

  6. [c] 하노이탑 - 재귀함수

  7. [c] 소수점 반올림^^

  8. [c] 최대공약수 알고리즘 (유클릿)

  9. [php] whois정보 조회 프로그램

  10. [c] 간단한 링크드 리스트(linked list) 자료형 예제..

  11. [c] CGI Library to C^^

  12. [c] scanf(), printf() 포맷의 형변환

Board Pagination Prev 1 ... 62 63 64 65 66 67 68 69 70 71 Next
/ 71