#include<stdio.h> #include<conio.h> void main(){ int i, j; clrscr(); for(i=5;i>0;i--){ for(j=5;j>0;j--){ printf("%d ",i); } printf("\n"); } getch(); }
5 5 5 5 5 4 4 4 4 4 3 3 3 3 3 2 2 2 2 2 1 1 1 1 1
public class Pgm8 { public static void main(String[] args) { // TODO Auto-generated method stub for(int i=5;i>=1;i--) { for(int j=1;j<6;j++) { System.out.print(" "+i); } System.out.print("\n"); } } }
5 5 5 5 5 4 4 4 4 4 3 3 3 3 3 2 2 2 2 2 1 1 1 1 1
#include<iostream> using namespace std; int main(){ int i, j; for(i=5;i>0;i--){ for(j=5;j>0;j--){ cout<<i<<" "; } cout<<"\n"; } getc; return 0; }
5 5 5 5 5 4 4 4 4 4 3 3 3 3 3 2 2 2 2 2 1 1 1 1 1