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;
}
Laisser un commentaire