Advertisement
dzieciol

29 wrzesień pro

Sep 29th, 2014
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.72 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. /* run this program using the console pauser or add your own getch, system("pause") or input loop */
  4.  
  5. int main(int argc, char** argv) {
  6. /*  float a,b,c  ;
  7.     cout<<"podaj ilość kilometrów"<<endl;
  8.     cin>>a;
  9.     cout<<"podaj ilość zużytego paliwa"<<endl;
  10.     cin>>b;
  11.     c=(b*100)/a;
  12.     cout<<"twoje średnie zużuecie to "<<c<<" l/100km"<<endl;
  13.    */
  14.    int i,a,b;
  15.    i=0;
  16.    cout<<"podaj wartość minimalną zakresu liczb"<<endl;
  17.    cin>>a;
  18.    cout<<"podaj wartość maksymalną zakresu liczb"<<endl;
  19.    cin>>b;
  20.    
  21.  
  22.    while (a<b)
  23.    {
  24.        
  25.        
  26.         i=i+a;
  27.          a++;
  28.         cout<<i<<endl;
  29.     }
  30.      
  31.     system("pause");
  32.     return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement