#include <iostream>
#include <vector>
using namespace std;
int main()
{
int n, m;
cin >> n >> m;
vector<vector<int> > t(m, vector<int> (n));
for (int i = 0; i < m; ++i){
for (int j = 0; j < n; ++j){
t[i][j] = i * n + j;
}
for (int i = 0; i < n; ++i){
for (int j = 0; j < m; ++j){
cout << t[j][i] << " ";
cout << endl;
return 0;
Объяснение:
просто нужно заполнить массив . _.
what =input("Введите действие: +,-,*,/ " )
a = float(input("Введите первое число: "))
b = float(input("Введите второе число: "))
if what == "+":
c = a + b
print("Результат: " + str(c))
elif what == "-":
c = a - b
elif what == "*":
c = a * b
elif what == "/":
c = a / b
if b != 0:
print(a / b)
else:
print('Деление на ноль запрещено.')
print("Выбрана неверная операция! :(")
input()
#include <iostream>
#include <vector>
using namespace std;
int main()
{
int n, m;
cin >> n >> m;
vector<vector<int> > t(m, vector<int> (n));
for (int i = 0; i < m; ++i){
for (int j = 0; j < n; ++j){
t[i][j] = i * n + j;
}
}
for (int i = 0; i < n; ++i){
for (int j = 0; j < m; ++j){
cout << t[j][i] << " ";
}
cout << endl;
}
return 0;
}
Объяснение:
просто нужно заполнить массив . _.
what =input("Введите действие: +,-,*,/ " )
a = float(input("Введите первое число: "))
b = float(input("Введите второе число: "))
if what == "+":
c = a + b
print("Результат: " + str(c))
elif what == "-":
c = a - b
print("Результат: " + str(c))
elif what == "*":
c = a * b
print("Результат: " + str(c))
elif what == "/":
c = a / b
if b != 0:
print(a / b)
else:
print('Деление на ноль запрещено.')
else:
print("Выбрана неверная операция! :(")
input()