Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Arrays - DS - HackerRank with C++
alaminrifat
Apr 6th, 2020
127
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++
0.24 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include<iostream>
using
namespace
std
;
int
main
(
)
{
int
N
;
cin
>>
N
;
int
arr
[
N
]
;
for
(
int
i
=
0
;
i
<
N
;
i
++
)
{
cin
>>
arr
[
i
]
;
}
for
(
int
j
=
(
N
-
1
)
;
j
>=
0
;
j
--
)
{
cout
<<
arr
[
j
]
<<
" "
;
}
}
Add Comment
Please,
Sign In
to add comment
Public Pastes
BIP32
2 hours ago | 0.35 KB
OoT rando seed 12/2
3 hours ago | 109.60 KB
Change your mindset
6 hours ago | 0.08 KB
Untitled
7 hours ago | 0.52 KB
P4IGNORE for Unreal Development
7 hours ago | 2.10 KB
Untitled
8 hours ago | 13.08 KB
Matthew Quote
8 hours ago | 0.18 KB
Input_AOC
12 hours ago | 18.01 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!