Advertisement
Guest User

christian andre Pro 2

a guest
Apr 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. #include "conio.h"
  4. using namespace std;
  5. #define mult 3
  6.  
  7. int main()
  8. {
  9. for (short m = 1; m < 6; m++)
  10. cout << mult << "*" << m*4 << "=" << mult*(4*m) << endl;
  11.  
  12.  
  13.  
  14. system("pause");
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement