From 1ccba7112b334c0887bd349966219b38eb9ccfb9 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Sun, 10 Dec 2023 15:55:42 +0200 Subject: Removed some empty problems and solved 2 problems in rust --- UVA/PIDigits/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'UVA') diff --git a/UVA/PIDigits/main.cpp b/UVA/PIDigits/main.cpp index 511c72a..5ed445d 100755 --- a/UVA/PIDigits/main.cpp +++ b/UVA/PIDigits/main.cpp @@ -1,4 +1,4 @@ -#include +#include #include using namespace std; @@ -10,9 +10,9 @@ typedef vector vi; #define INF 1000000000 -int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); +int main() { + ios_base::sync_with_stdio(false); + cin.tie(NULL); int n; cin >> n; double PI = acos(-1); -- cgit v1.2.3