Convertisseur EUR BTC

par

dans

convertisseur euro btc

 

#include <stdio.h>
int main() {
  float euro, bitcoin, exchange_rate;
  printf("Enter amount in Euros: ");
  scanf("%f", &euro);
  exchange_rate = 60296.35; // current exchange rate as of April 11, 2023
  bitcoin = euro / exchange_rate;
  printf("%.2f Euros is equal to %.8f Bitcoin.n", euro, bitcoin);
    return 0;
}



Commentaires

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

Translate »