/*#include <stdio.h>

int main(void) 
{
    int Tri_Base=10, Tri_Height=15;

    int Tri_Area = Tri_Base*Tri_Height/2;
    
    
    printf("삼각형의 넓이 : %d\n", Tri_Area);
    
    
    return 0;
}*/

/*#include <stdio.h>

int main(void) 
{
    double Tri_Base=3, Tri_Height=5;

    double Tri_Area = (Tri_Base*Tri_Height)/2;
    
    
    printf("삼각형의 넓이 : %.2lf\n", Tri_Area);
    
    
    return 0;
}*/

/*#include <stdio.h>

int main(void) 
{
    short sVar = 32000;
    int iVar = -2140000000;

    printf("저장 값: %d %d\n", sVar, iVar);

    long long dist1 = 2720000000000;
    __int64 dist2 = 4500000000000;

    printf("지구와 천왕성 간의 거리(km): %lld\n", dist1);
    printf("태양과 해왕성 간의 거리(km): %lld\n", dist2);
    
    return 0;
}*/


/*#include <stdio.h>

int main(void) 
{
    float x = 3.14f;
    double y = -3.141592;
    long double z = 29.74;


    printf("부동소수 값: %f %f %f\n", x, y, z);

    
    return 0;
}*/


/*#include <stdio.h>

int main(void) 
{
    double const e = 2.718281;
    
    printf("오일러 수 %f\n", e);
    
    return 0;
}*/


#include <stdio.h>

int main(void) 
{
    double const e = 2.718281;
    
    printf("오일러 수 %f\n", e);
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: