Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Problem 14. Print the ASCII Table
a guest
Sep 22nd, 2016
226
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C#
0.21 KB
| None
|
0
0
raw
download
clone
embed
print
report
using
System
;
class
Program
{
static
void
Main
(
)
{
for
(
int
i
=
33
;
i
<=
126
;
i
++
)
{
Console
.
Write
(
Convert
.
ToChar
(
i
)
)
;
}
Console
.
WriteLine
(
)
;
}
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
33 min ago | 9.72 KB
Ironforge Setup Script
Bash | 1 hour ago | 5.88 KB
Untitled
3 hours ago | 7.55 KB
Untitled
5 hours ago | 16.16 KB
Untitled
6 hours ago | 8.98 KB
Untitled
7 hours ago | 27.42 KB
Untitled
8 hours ago | 15.07 KB
Untitled
9 hours ago | 26.38 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!