#include<stdio.h>
#include<conio.h>
void main(){
int i, j;
clrscr();
for(i=1;i<=5;i++){
for(j=1;j<=5;j++){
printf("* ");
}
printf("\n");
}
getch();
}
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
public class Pgm13 {
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("* ");
}
System.out.print("\n");
}
}
}
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
#include<iostream>
using namespace std;
int main(){
int i, j, k;
for(i=5;i>0;i--){
for(j=1;j<=i-1;j++){
cout<<" ";
}
for(j=5;j>=i;j--){
cout<<"* ";
}
cout<<"\n";
}
getc;
return 0;
}
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *