Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7540 - Утга олголт 0

NxN хэмжээтэй квадрат массивыг жишээн дээрх загвараар дүүргэ.

Input

Квадрат массивын хэмжээ натурал тоо N өгөгдөнө. N<10.

Output

Квадрат массивын элементүүдийг мөр мөрөөр нь хэвлэнэ.

Гэхдээ элемент бүрийг 3 хоосон зайд хойш нь шахаж хэвлэнэ. Жишээг сайн ажиглана уу.

Жишээн дээрх 1-ийн тоо гэхэд урдаа, хойноо тус бүр 2 хоосон зайтай байна. Мөн 16-гийн тоо урдаа, хойноо тус бүр 1 хоосон зайтай байна.

Example

Input:
5

Output:
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25

Нэмсэн:Bataa
Огноо:2013-02-07
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2024-12-08 08:13:58
#include<bits/stdc++.h>
using namespace std;
int n,i,j,k;
int main(){
cin>>n;
for(i=0;i<=n-1;i++){
for(j=1;j<=n;j++){
k=i*n+j;
cout<<" "<<k;
}
cout<<"\n";
}
}
//huul2
2024-11-30 12:49:02
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
int max_num=n*n;
int width=0;
while(max_num>0) {
width++;
max_num/=10;
}
for(int i=1;i<=n*n;i++) {
cout << setw(width+1) << i;
if(i%n==0) {
cout<< '\n';
}
}
return 0;
}
2024-01-23 07:02:17
#include<iostream>
#include<string>
using namespace std;
int main(){
int a,c,n,s,i=1,p;
cin>>n;
for(c=1;c<=(n*n);c++){
if(c<10){
cout<<" "<<c;
}else{
cout<<' '<<c;
}
if(c%n==0){
cout<<'\n';
}

}
return 0;
}
2024-01-22 13:30:19
ta nar boli oo pisda




















































































































































nar mini

2023-11-06 15:30:50
// c++
#include <iostream>
#include<string>
using namespace std;

int main(){
int a;
cin>>a;

for(int i=1; i<=(a*a); i++){
if(i<10){
cout<<" "<<i;
}
else{
cout<<' '<<i;
}
if(i%a==0){
cout<<'\n';
}
}
}
2023-11-06 05:37:08
#include <iostream>
using namespace std;
int main(){
int n, i=1;
cin >> n;
while(i <= n*n){
cout << i <<" ";
if(i%n == 0)cout<< endl;

i++;
}
}deelii bla ksoh

2023-01-23 10:30:45
https://www.youtube.com/watch?v=nKIu9yen5nc
2022-12-14 07:12:46



dulguun ah zaaj uguv
#include <bits/stdc++.h>
using namespace std;
int main()
{long long a,b[10][10],c=1,d,n,m=0,i,j,p,s,z[100],k,max,t,q[100];
cin >> a;
for(i=1;i<=a*a;i++){
if(1<=i && 10>=i){
cout <<i<<" "<<" ";
}
else {
cout << i << " ";
}
if(i%5==0){
cout << "\n";
}
}
}
2022-10-12 05:45:33
#include<stdio.h>
int main(){
int i,j,n,t=1;
scanf("%d",&n);
int a[n][n];
for (i=0;i<n;i++){
for(j=0;j<n;j++){
a[i][j]=t;
t++;
}
}
for (i=0;i<n;i++){
for(j=0;j<n;j++){
printf("%3d",a[i][j]);
}
printf("\n");
}
return 0;
}
2022-10-10 07:52:31
#include<stdio.h>
int main(){
int i,j,n,t=1;
scanf("%d",&n);
int a[n][n];
for(i=0; i<n; i++){
for(j=0; j<n; j++){
a[i][j]=t;
t++;
}
}
for(i=0; i<n; i++){
for(j=0; j<n; j++){
printf("%3d",a[i][j]);
}
printf("\n");
}
return 0;
}
2022.10.10
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.