Помогите пожалуйста решить задачу на С++
Заполнить массив по следующему принципу:
31 25 19 13 7 1
32 26 20 14 8 2
33 27 21 15 9 3
34 28 22 16 10 4
35 29 23 17 11 5
36 30 24 18 12 6
Ответы на вопрос
Ответил varscat
0
#include <iostream>
#include <iomanip>
using std::cout;
using std::cin;
using std::endl;
using std::setw;
using std::fixed;
int main()
{
const int n = 6, m = 6;
int a[n][m];
int value;
for(int i = 0; i < n; i++)
{
value = 37 + i;
for(int j = 0; j < m; j++)
{
a[i][j] = value -= 6;
}
}
for(int i = 0; i < n; i++)
{
for(int j = 0; j < m; j++)
{
cout << setw(2) << a[i][j] << " ";
}
cout << endl;
}
cin.get();
return 0;
}
#include <iomanip>
using std::cout;
using std::cin;
using std::endl;
using std::setw;
using std::fixed;
int main()
{
const int n = 6, m = 6;
int a[n][m];
int value;
for(int i = 0; i < n; i++)
{
value = 37 + i;
for(int j = 0; j < m; j++)
{
a[i][j] = value -= 6;
}
}
for(int i = 0; i < n; i++)
{
for(int j = 0; j < m; j++)
{
cout << setw(2) << a[i][j] << " ";
}
cout << endl;
}
cin.get();
return 0;
}
Новые вопросы
История,
2 года назад
Математика,
9 лет назад