From 7f856c7ff080b8d455b9ed16c2e57dd862c3879d Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Sat, 5 Nov 2022 01:41:11 +0200 Subject: moved some file --- Word/main.cpp | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Word/main.cpp (limited to 'Word/main.cpp') diff --git a/Word/main.cpp b/Word/main.cpp deleted file mode 100644 index 31937b2..0000000 --- a/Word/main.cpp +++ /dev/null @@ -1,34 +0,0 @@ -#include -#include - -using namespace std; - -string convertLower(string s) { - for(auto &ch : s) { - ch = tolower(ch); - } - return s; -} -string convertUpper(string s) { - for(auto &ch : s) { - ch = toupper(ch); - } - return s; -} - -int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); - string s; - cin >> s; - int l = 0; - int u = 0; - for(auto ch : s) { - if(islower(ch)) { - l++; - } else { - u++; - } - } - cout << (l < u ? convertUpper(s) : convertLower(s)); -} -- cgit v1.2.3