Facebook
From Capacious Parakeet, 6 Years ago, written in C++.
This paste is a reply to Re: Re: Re: Untitled from Corrupt Capybara - view diff
Embed
Download Paste or View Raw
Hits: 496
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int a,b,c,i;
  5. int main()
  6. {
  7.     cout << "Podaj poczatek zakresu" <<endl;
  8.     cin>>a;
  9.     cout << "Podaj koniec zakresu" <<endl;
  10.     cin>>b;
  11.     if(a>b) {
  12.     c=a;
  13.     a=b;
  14.     b=c;
  15.     }
  16.     for(i=b; i>=a; i-=7){
  17.         cout<<i<<endl;
  18.     }
  19.     return 0;
  20. }
  21.  

Replies to Re: Re: Re: Re: Untitled rss

Title Name Language When
Re: Re: Re: Re: Re: Untitled Social Treeshrew cpp 6 Years ago.