Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
CPP
136
99
Guest on 14th March 2023 12:23:39 AM
#include <stdio.h>
#include <stdlib.h>
int
main
(
)
{
int
i,j
;
for
(
i
=
1
;
i
<=
9
;
i
++
)
{
for
(
j
=
1
;
j
<=
9
;
j
++
)
{
printf
(
"%d*%d=%d "
,i,j,i
*
j
)
;
if
(
j
==
9
)
{
printf
(
"
\n
"
)
;
}
}
}
system
(
"pause"
)
;
return
0
;
}
Raw Paste
#include <stdio.h> #include <stdlib.h> int main() { int i,j; for(i=1;i<=9;i++) { for(j=1;j<=9;j++) { printf("%d*%d=%d ",i,j,i*j); if(j==9) { printf("\n"); } } } system("pause"); return 0; }
Login
or
Register
to edit or fork this paste. It's free.