Поделитесь своими знаниями, ответьте на вопрос:
Лист разделяются на(обозначьте цифрами) и(обозначаются буквами латинского алфавита)
#include <iomanip>
using namespace std;
int main() {
int n,x;
cout<<"n = "; cin>>n;
float a[n];
srand(time(NULL));
for (int i=0; i<n; i++) {
a[i]=(rand()%100);
a[i]/=10;
cout<<a[i]<<" ";
}
cout<<endl;
int i=3;
while (i<n) {
for (int j=i; j<n-1; j++) a[j]=a[j+1];
n--;
i+=3;
}
for (int i=0; i<n; i++) cout<<a[i]<<" ";
cout<<endl;
system("pause");
return 0;
}