From fc7d0a52458a1face8c8b2a025f2d43fffdd36c7 Mon Sep 17 00:00:00 2001 From: Shivam Chaudhary Date: Thu, 9 Feb 2023 18:33:03 +0100 Subject: [PATCH] Add constant values for new currencies --- src/currencyExchange.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/currencyExchange.h b/src/currencyExchange.h index 6629fcc..7aac148 100644 --- a/src/currencyExchange.h +++ b/src/currencyExchange.h @@ -2,8 +2,12 @@ #define USD_RATE_OF_ONE_EURO 1.07 #define GBP_RATE_OF_ONE_EURO 0.89 +#define JAPANESE_YEN_RATE_OF_ONE_EURO 140.9 +#define CHINESE_YUAN_RATE_OF_ONE_EURO 7.29 #define CURRENCY_CODE_USD 1 #define CURRENCY_CODE_GBP 2 +#define CURRENCY_CODE_JAPANESE_YEN 3 +#define CURRENCY_CODE_CHINESE_YUAN 4 float convert(float euro, int newCurrencyCode); \ No newline at end of file