Submit solution
Points:
5
Time limit:
2.0s
Memory limit:
64M
Problem type
Allowed languages
Ada, Assembly, Awk, Brain****, C, C#, C++, COBOL, CommonLisp, D, Dart, F#, Forth, Fortran, Go, Groovy, Haskell, Intercal, Java, JS, Kotlin, Lisp, Lua, Nim, ObjC, OCaml, Octave, Pascal, Perl, PHP, Pike, Prolog, Python, Racket, Ruby, Rust, Scala, Scheme, Sed, Swift, TCL, Text, Turing, VB, Zig
DWITE Online Computer Programming Contest, December 2008, Problem 1
In geometry, a rhombus is a four sided polygon, where every side is the same length. Technically speaking, a square is a special case of a rhombus; but the shape is more commonly recognized as the diamond suit on playing cards.
Let's draw some!
The input will contain 5 lines, odd integers – the height of a desired rhombus.
The output will contain 5 rhombi, drawn using pound signs (#
) and periods (.
). Refer to sample input for the desired shape and format.
Sample Input
3
5
1
1
1
Sample Output
.#.
###
.#.
..#..
.###.
#####
.###.
..#..
#
#
#
Comments