Formulimi i algoritmeve: Ciklet qe kontrollohen nga nje numerues

 

Ciklet qe kontrollohen nga nje numerues. fq 123

 

Forma e pergjithshme e algoritmit:

int i = 1;

while (i<= n)   // n jepet

{

veprime;

i = i+1;

}

Shembull i perdorimit te struktures while per gjetjen dhe afishimin e mesatares se 10 notave te cilat jepen nga tastiera.


     // Mesatarja e 10 notave

#include <iostream>

using namespace std;  

int main()

{

    int notat, i=1,shuma=0;

    double mesatarja;

   

    while(i<=10)

    {

    cout<< "Jepni noten "<<i<<endl;

    cin >> notat;   

    shuma = shuma+notat;

    i=i+1;

    }    

     cout <<" shuma e notave eshte: "

     << shuma <<endl;
     mesatarja = (double)shuma/(i-1);

     cout <<" Ndersa mesatarja e notave eshte: "

     << mesatarja<<endl;

     system ("pause");

     return 0;

 

}