Здесь Вы можете найти ответы на многие вопросы или задать свой вопрос!
#include <iostream>
#include <vector>
using namespace std;
void swap(int *a, int *b){
int temp = *a;
*a = *b;
*b = temp;
}
signed main(){
int n;
cin >> n;
int a[n];
for(int i = 0; i < n; i++)
cin >> a[i];
int res = 0;
for(int i = 0; i < n-1; i++){
for(int j = 0; j < n-i-1; j++){
if(a[j] > a[j+1]){
res++;
swap(a[j],a[j+1]);
cout << res;
Дан во вложении.
#include < cstdlib> #include < iostream> using namespace std; int main(int argc, char *argv[]){ int n; cout< < "введите количество элементов массива."< < endl; cin> > n; int mas1[n]; int mas2[n]; for(int i=0; i< n; i++){ mas1[i] = rand()%100; //заполняем массив случайными числами от 0 до 100 if(mas1[i]%10 == 4) { mas2[i]=mas1[i]/2; cout< < "замена! "; } else {cout< < "\t"; mas2[i]=mas1[i]; } cout< < mas1[i]< < '\t'< < mas2[i]< < endl; } system("pause"); return exit_success; }
в ms excel по умолчанию числа выравниваются по правому краю, текст по левому
но при ручном форматировании можно выравнивать как угодно
Популярные вопросы