Skip to main content

Currency Converter - USD & BDT [C Programming]

#include <stdio.h>
void main()
{
    int i;
    float usd, bdt;
    printf("Press 1 to convert USD to BDT\nPress 2 to convert BDT to USD\n");
    printf("Enter your choice: ");
    scanf("%d", &i);
    switch(i)
    {
        case 1:
            printf("Enter amount in USD: ");
            scanf("%f", &usd);
            bdt = usd * 80;
            printf("1 USD = 80 BDT\n");
            printf("%0.3f USD = %0.3f BDT", usd, bdt);
            break;
        case 2:
            printf("Enter amount in BDT: ");
            scanf("%f", &bdt);
            usd = bdt * 0.0125;
            printf("1 BDT = 0.0125 USD\n");
            printf("%0.3f BDT = %0.3f USD", bdt, usd);
            break;
        default:
            printf("Wrong Choice!");
    }
}

Comments

  1. I really appreciate this wonderful post that you have provided for us. I assure this would be beneficial for most of the people. 50 cad to usd

    ReplyDelete

Post a Comment

Popular posts from this blog

Greatest Value Among Three Numbers [C Programming]

#include <stdio.h> void main() {     int a, b, c;     printf("Enter a number in a:");     scanf("%d", &a);     printf("Enter a number in b:");     scanf("%d", &b);     printf("Enter a number in c:");     scanf("%d", &c);     if(a >= b && a >= c) // a > b, a > c     {         printf("%d is largest", a);     }     else if(b >= a && b >= c) // b > a, b > c     {         printf("%d is largest", b);     }     else if(c >= a && c >= b) // c > a, c > b     {         printf("%d is largest", c);     } }