From 75f02a17eff337e98ad08071e9b3beadb17d2c01 Mon Sep 17 00:00:00 2001 From: Adarsh Addee <59617563+AdarshAddee@users.noreply.github.com> Date: Sat, 1 Oct 2022 19:04:35 +0530 Subject: [PATCH] Delete Inverted_half_pyramid.cpp --- C++/Inverted_half_pyramid.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 C++/Inverted_half_pyramid.cpp diff --git a/C++/Inverted_half_pyramid.cpp b/C++/Inverted_half_pyramid.cpp deleted file mode 100644 index 1668babc..00000000 --- a/C++/Inverted_half_pyramid.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// Github username ---- aditya-464 -// Github link --- https://github.com/aditya-464 -#include -using namespace std; - -int main() -{ - int rows; - - cout << "Enter number of rows: "; - cin >> rows; - - for(int i = rows; i >= 1; --i) - { - for(int j = 1; j <= i; ++j) - { - cout << "* "; - } - cout << endl; - } - - return 0; -} \ No newline at end of file