Advertisement
plantbae

Untitled

May 9th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. using namespace std;
  4. int mul = 5, multi=1;
  5. int main()
  6. {
  7.     do
  8.     {
  9.         cout << "\t" <<mul << "*" << multi << "=" << mul*multi << endl;
  10.         multip++;
  11.     } while (multip <= 10);
  12.     system("pause");
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement