Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. int ax=10;
  3. int bx=4;
  4. void main()
  5. {
  6. for(int cx=10; cx>0;cx--)
  7. {
  8. ax+=bx;
  9. bx+=1;
  10. ax+=bx;
  11. }
  12. int dx=ax;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement