Guest User

Untitled

a guest
Jul 12th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1.  
  2. using namespace std;
  3. #include <iostream>
  4. int main()
  5. {
  6. int x,y,z;
  7. cout<<"enter an integer";
  8. cin>>y;
  9. for(x=1;x<=20;x++)
  10. {
  11. z=x*y;
  12. cout<<z<<endl;
  13. }
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment