Contents

Develop
2003.04.23 09:45

[c] 소수점 반올림^^

Views 9683 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

# 소수점 반올림 간단 예제

#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. [asp] 문자열 넘겨받기 (get,post)

    Date2013.04.23 CategoryDevelop Byhooni Views9817
    Read More
  2. [c++] 바탕화면 테두리에 자석처럼 붙는 스냅효과..

    Date2013.04.23 CategoryDevelop Byhooni Views9813
    Read More
  3. [c] OpenGL 시어핀스키 가스킷(p.73 - 첫시간)

    Date2003.04.23 CategoryDevelop Byhooni Views9794
    Read More
  4. [c++] 채팅로봇 소스.. ㅋㄷㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views9788
    Read More
  5. [c] 지나가는 패킷 잡기

    Date2003.04.23 CategoryDevelop Byhooni Views9772
    Read More
  6. [c] fgets() 함수 사용하기..

    Date2003.04.23 CategoryDevelop Byhooni Views9745
    Read More
  7. [c] 압축 알고리즘 소스 및 정리

    Date2013.04.23 CategoryDevelop Byhooni Views9729
    Read More
  8. [c] 레포트용으로 제출했던 여러 소스코드 모음

    Date2003.04.23 CategoryDevelop Byhooni Views9723
    Read More
  9. [c] 숫자(int, Number)를 hex코드로 변환하는 소스

    Date2013.04.23 CategoryDevelop Byhooni Views9723
    Read More
  10. [c++] 레지스트리 등록 예제

    Date2013.04.23 CategoryDevelop Byhooni Views9721
    Read More
  11. [js] 스크롤을 포함한 마우스 위치 찾는 코드

    Date2003.04.23 CategoryDevelop Byhooni Views9721
    Read More
  12. [c] UCP/TCP 채팅 소스 - 정리해야 함..

    Date2003.04.23 CategoryDevelop Byhooni Views9720
    Read More
Board Pagination Prev 1 ... 25 26 27 28 29 30 31 32 33 34 ... 71 Next
/ 71