[Exam Problems] C# Basics - Problem {3} - The Explorer. Разминаване?
Ако може някой да помогне, защо дава 0/100 т. в Judge-a? Мисля, че всичко е наред, пробвах с тестовете оказани в .txt файловете и фигурата си излиза правилно, I guess?
TheExplorer C# code << source code
Линк към Judge , за да тествате и да видите кое не е наред.
Условие(на кратко): The char that forms the outline of the diamonds is '*' and the surrounding parts are made of '-' (see the examples). Your task is to print a diamond of given size n.
- Input: Input data should be read from the console. The only input line will hold the width of the diamond – n.
- Output: The output data must be printed on the console. The output lines should hold the diamond.
- Constraints: The number n is positive odd integer between 3 and 59, inclusive.
input: 5
output:
--*--
-*-*-
*---*
-*-*-
--*--
input: 7
output:
---*---
--*-*--
-*---*-
*-----*
-*---*-
--*-*--
---*---
Да, аз се досетих от " (n - 1) / 2) " за outside вместо " n / 3 ". Иначе благодаря за старанието и помощта. :)