Skip to content

Instantly share code, notes, and snippets.

@Ribesg
Forked from anna-is-cute/IAmDoingItWrong.java
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ribesg/0b9af4bcfbe9991c2dda to your computer and use it in GitHub Desktop.
Save Ribesg/0b9af4bcfbe9991c2dda to your computer and use it in GitHub Desktop.
public
class
IAmDoingItWrong
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
new
StringBuilder
(
)
.
append
(
(
char
)
(
Math
.
pow
(
2
,
3
)
*
Math
.
pow
(
3
,
2
)
)
)
.
append
(
Character
.
valueOf
(
(
char
)
(
4
*
5
*
5
+
1
)
)
)
.
append
(
(
char
)
(
Math
.
pow
(
2
,
2
)
*
Math
.
pow
(
3
,
3
)
)
)
.
append
(
(
char
)
(
Math
.
pow
(
2
,
2
)
*
Math
.
pow
(
3
,
3
)
)
)
.
append
(
Character
.
valueOf
(
(
char
)
(
3
*
37
)
)
)
)
;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment