Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Multiplication table in C++
ahmed0saber
Nov 4th, 2020
58
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++
0.20 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include <iostream>
using
namespace
std
;
int
main
(
)
{
int
a
=
1
, b
=
1
;
while
(
a
<=
9
)
{
b
=
1
;
while
(
b
<=
9
)
{
cout
<<
a
<<
"*"
<<
b
<<
"="
<<
a
*
b
<<
" "
;
b
=
b
+
1
;
}
a
=
a
+
1
;
cout
<<
endl
;
}
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
MAKE $5000 INSTANTLY W
JavaScript | 12 sec ago | 0.08 KB
FREE BTC GUIDE X
JavaScript | 33 sec ago | 0.08 KB
Make 3500$ in 20 MIN [Method] Z
JavaScript | 37 sec ago | 0.08 KB
FREE BTC GUIDE V
JavaScript | 41 sec ago | 0.08 KB
✅ MAKE $22OO IN 10 MIN Z
JavaScript | 57 sec ago | 0.08 KB
Make 3500$ in 20 MIN [Method] P
JavaScript | 1 min ago | 0.08 KB
FREE BTC GUIDE 5
JavaScript | 1 min ago | 0.08 KB
Make 3500$ in 20 MIN [Method] V
JavaScript | 1 min ago | 0.08 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!