12345678910111213141516
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { for(int k=4; k>=1; k--) { for(int j=k; j>=1; j--) cout<<j<< ' '; cout<<k<<endl; } system("Pause"); return 0; }
4 3 2 1 4 3 2 1 3 2 2 2 1 1