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