Guest User

Untitled

a guest
Apr 7th, 2014
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. cout<<"a= "; int a; cin>>a; cout<<endl;
  8. while(a)
  9. {
  10. cout<<"a= "<<a; cout<<endl;
  11. cout<<"a=a+1"<<" sau a="<<a-1<<"+1";
  12. a=a-1; cout<<endl;
  13. }
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment