#include<iostream>
#include <cstdlib>
#include <ctime>
#include <iomanip>
using namespace std;
void inputArray(int *p, int k);
int main() {
setlocale(LC_ALL, "Russian");
const int n = 10;
const int m = 10;
int B[n][m], i, j;
for (i = 0; i < n; i++) {
inputArray(B[i], n);
for (j = 0; j < m; j++) {
cout<<setw(5)<<B[i][j];
}
cout<<endl;
}
}
void inputArray(int *p, int k) {
srand(time(0));
for (int i = 0; i < k; i++)
*(p+i)=(rand()%100 - 50);
}
#include<iostream>
#include <cstdlib>
#include <ctime>
#include <iomanip>
using namespace std;
void inputArray(int B[24][14], int i, int j) { // Функция инициализации массива
srand(time(0));
for (i = 0; i < 24; i++) {
for (j = 0; j < 14; j++) {
B[i][j] = (rand( )%100 - 50);
}
};
}
void printArray(int B[24][14], int i, int j) { // Функция для вывода массива
for (i = 0; i < 24; i++) {
for (j = 0; j < 14; j++) {
cout<<setw(5)<<B[i][j];
}
cout<<endl;
}
}
void processingArray(int *B, int k); // Функция для обработки массива
int main() {
setlocale(LC_ALL, "Russian");
int B[24][14], i=0, j=0;
inputArray(B, i, j);
printArray(B, i, j);
cout<<endl<<endl;
processingArray(B[i], 14) {
}
}
#include<iostream>
#include<math.h>
#include<iomanip>
using namespace std;
int main(){
setlocale(LC_ALL, "Russian");
float t,y=0;
int a=10, c=5;
cout<<"Введите значение t от 1 до 8"<<endl;
cout<<"t=";
cin>>t;
cout<<" ________________________________"<<endl;
cout<<"|Значения функции y в зависимости|"<<endl;
cout<<"| от занчения t с шагом 0,5 |"<<endl;
cout<<" --------------------------------"<<endl;
do{
if (t>5){
y=log10(t)-log(c);
cout<<"| t="<<setw(3)<<t<<setw(8)<<"|"<<setw(8)<<"y="<<setprecision(4)<<y<<" |"<<endl;
cout<<" --------------------------------"<<endl;
}
else {
if (t==5){
y=pow(a,3)+c;
cout<<"| t="<<setw(3)<<t<<setw(8)<<"|"<<setw(11)<<"y="<<setprecision(4)<<y<<" |"<<endl;
cout<<" --------------------------------"<<endl;
}
else {
if (t<5){
y=exp(-2*t)*sqrt(a*c);
cout<<"| t="<<setw(3)<<t<<setw(8)<<"|"<<setw(10)<<"y="<<setprecision(4)<<y<<"|"<<endl;
cout<<" --------------------------------"<<endl;
}
}
}
t+=0.5;
}while(t>=1 && t<=8);
}