#include <stdio.h>
int main()
{
int n = 5;
int limit = 8;
int i,j;
int x = 1;
for(i = 1; i <= n; i++)
{
for (j = 1; j <= n; j++)
{
printf("%2d ", x++);
if (x == limit + 1)
x = 1;
}
printf("\n");
}
return 0;
}
#include <iostream.h>
int main()
{
int n = 5;
int limit = 8;
int x = 1;
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= n; j++)
{
cout<<x++<<" ";
if (x == limit + 1)
x = 1;
}
cout<<endl;
}
return 0;
}
class PatternProg
{
public static void main(String args[])
{
int n = 5;
int limit = 8;
int x = 1;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
System.out.print(x+" ");
x++;
if (x == limit + 1)
{
x = 1;
}
}
System.out.println();
}
}
}
using System;
class PatternProg
{
public static void Main()
{
int n = 5;
int limit = 8;
int x = 1;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
Console.Write(x + " ");
x++;
if (x == limit + 1)
{
x = 1;
}
}
Console.WriteLine();
}
Console.ReadKey(true);
}
}
n = 5
limit = 8
d = 1
for x in range(1, n + 1):
for y in range(1, n + 1):
print(d, end=" ")
d += 1
if d == limit + 1:
d = 1
print()