Facebook
From Social Hamerkop, 6 Years ago, written in C++.
This paste is a reply to Untitled from Corrupt Teal - view diff
Embed
Download Paste or View Raw
Hits: 877
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int liczba, i;
  5.  
  6. int main()
  7. {
  8.     cout << "Podaj liczbe" <<endl;
  9.     cin>>liczba;
  10.     for( i=1; liczba!=0; i++)
  11.         {
  12.             cout << "Podaj liczbe" <<endl;
  13.             cin >> liczba;
  14.         }
  15.     cout << "Podales liczbe = 0 za " << i << " razem" <<endl;
  16.     return 0;
  17. }
  18.  
  19.  

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Diminutive Bushbaby cpp 6 Years ago.