November 2018 1 22 Report

PILNE! Bardzo proszę o rozwiązanie! (Wrzucam ponownie)

Opisz wszystkie komendy i zmienne, co oznaczają, do czego służą i na co to jest algorytm.

#include <iostream>

using namespace std;

void sortowanie_przez_wstawianie(float tab[], int n)

{

int i,k,elem;

for(i=1;i<n;i++)

{

elem=tab[i];

k=i-1;

while(k>=0 && tab[k]>elem)

{

tab[k+1]=tab[k];

k--;

}

tab[k+1]=elem;

}

for(i=0;i<n;i++)

cout<<tab[i]<<endl;

}

int main()

{

int n=5;

float tab[n];

int suma=0;

int i;

float harm=0;

cout << "Podaj 5 liczb " << endl;

for(i=0;i<n;i++)

{

cin>>tab[i];

}

cout << endl;


Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.