Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

using System; namespace Shapes { public class ShapeDrawer { public static string DrawSquare(int height, int width) { // Write your code to draw the square

image text in transcribed

using System; namespace Shapes { public class ShapeDrawer { public static string DrawSquare(int height, int width) { // Write your code to draw the square here } public static string DrawIsoscelesTriangle(int size) { // Write your code to draw the triangle here } } }
Using C# programm ng write a class to draw shapes of varying sizes. This class should include two m ethods one to draw hollow squares, and another to draw isosceles triangles. The two methods and what they should output are explained below. Your program will be tested by directly calling the methods public static string DrawSquare(int height, int width) This method should return a string of a drawing of a hollow square. The height parameter will determine the height of the square, and the width will set the width of the square The square should have a border made of $characters. For example, if the height was 4 and the width was 5, the string returned from the method should look like f the size is undrawable (if the height or width is less than 1), the method should instead return a string that says "Cannot draw that shape." public static string DrawIsoscelesTriangle(int size) This method should return a string of a drawing of an isosceles triangle. The size parameter will determine the size of the peak of the triangle, and the triangle should be filled with For example, if the size was 3, the string returned from the method should look like: If the size is undrawable (if it less than 2), the method should instead return a string that says "Cannot draw that shape

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Current Trends In Database Technology Edbt 2006 Edbt 2006 Workshops Phd Datax Iidb Iiha Icsnw Qlqp Pim Parma And Reactivity On The Web Munich Germany March 2006 Revised Selected Papers Lncs 4254

Authors: Torsten Grust ,Hagen Hopfner ,Arantza Illarramendi ,Stefan Jablonski ,Marco Mesiti ,Sascha Muller ,Paula-Lavinia Patranjan ,Kai-Uwe Sattler ,Myra Spiliopoulou ,Jef Wijsen

2006th Edition

3540467882, 978-3540467885

Students also viewed these Databases questions