You are on page 1of 1

#include<iostream>

usingnamespace std;

int main(){

int piket;
cout <<"Jep piket: ";
cin >> piket;
if (piket >= 90)
cout <<"Nota eshte 10."<< endl;
else if (piket >= 80)
cout <<"Nota eshte 9."<< endl;
else if (piket >= 70)
cout <<"Nota eshte 8."<< endl;
else if (piket >= 60)
cout <<"Nota eshte 7."<< endl;
else if (piket >= 50)
cout <<"Nota eshte 6."<< endl;
else
cout <<"Nuk keni kaluar provimin."<< endl;
cin.ignore(); cin.get();
return 0;

You might also like