Ответ:
#include "pch.h"
#include <stdio.h>
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int mas[30];
for (int i = 0; i < 30; i++) {
mas[i] = rand()%(10-(-10)+1)+(-10);
cout << mas[i] << " ";
}
cout << endl;
system("pause");
return 0;
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include "pch.h"
#include <stdio.h>
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int mas[30];
for (int i = 0; i < 30; i++) {
mas[i] = rand()%(10-(-10)+1)+(-10);
cout << mas[i] << " ";
}
cout << endl;
system("pause");
return 0;
}
Объяснение: