Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Inverted half pyramid of *
Twist_Nemo
Mar 18th, 2021
132
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C
0.19 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include <stdio.h>
int
main
(
)
{
int
i
,
j
,
n
;
scanf
(
"%d"
,
&
n
)
;
for
(
i
=
n
;
i
>=
1
;
i
--
)
{
for
(
j
=
1
;
j
<=
i
;
j
++
)
{
printf
(
"*"
)
;
}
printf
(
"
\n
"
)
;
}
return
0
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
z66is_archive.zip.txt
6 hours ago | 1.05 MB
Untitled
8 hours ago | 71.19 KB
Untitled
8 hours ago | 64.82 KB
Untitled
8 hours ago | 88.55 KB
Untitled
8 hours ago | 65.48 KB
Untitled
9 hours ago | 95.14 KB
Untitled
9 hours ago | 78.82 KB
Untitled
9 hours ago | 59.02 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!