Implement function WriteRectangle to display a (filled) rectangle on the screen, with the width and height indicated as parameters, using asterisks. Implement function writeRectangle Hollow to display a (hollow, only borders) rectangle on the screen, with the width and height indicated as parameters, using asterisks. Use dash (-) to as a fill. Minimum value for width and height is 3. If parameters does not meet the minimum value, function should throw ArgumentException. Filled new Writer.WriteRectangle(4,3); Should return: **** Hollow new Writer.WriteRectangleHollow(4,3); Should return:

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 14PE
icon
Related questions
Question

C# Programming

Please see attached photo for the instructions

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace WriteRectangle
{
    public class Writer
    {
        // TODO: Implement me!
        public string WriteRectangle(int width, int height)
        {
            throw new NotImplementedException();
        }

        // TODO: Implement me!
        public string WriteRectangleHollow(int width, int height)
        {
            throw new NotImplementedException();
        }
    }
}

2
im a
3
LO VO 2 000 O
4 {
6
7
8
9
10
HN Mo
2345
L6
17
19
using WriteRectangle;
21
O references
Binternal class Program
23
24
O references
|-| private static void Main(string[] args)
{
I
DO NOT MODIFY THIS CODE
7 Enamespace WriteRectangle
{
Console.WriteLine(new Writer().WriteRectangle(2, 3));
Console.WriteLine(new Writer().WriteRectangleHollow(2, 3));
using System;
using
using System.Linq;
using System.Text;
using
System.Collections.Generic;
System.Threading.Tasks;
6 references
public class Writer
{
PLS COMPLETE THIS CODE
// TODO: Implement me!
3 references
public string WriteRectangle(int width, int height)
{
throw new NotImplementedException();
// TODO: Implement me!
3 references
public string WriteRectangleHollow(int width, int height)
{
throw new NotImplementedException();
Transcribed Image Text:2 im a 3 LO VO 2 000 O 4 { 6 7 8 9 10 HN Mo 2345 L6 17 19 using WriteRectangle; 21 O references Binternal class Program 23 24 O references |-| private static void Main(string[] args) { I DO NOT MODIFY THIS CODE 7 Enamespace WriteRectangle { Console.WriteLine(new Writer().WriteRectangle(2, 3)); Console.WriteLine(new Writer().WriteRectangleHollow(2, 3)); using System; using using System.Linq; using System.Text; using System.Collections.Generic; System.Threading.Tasks; 6 references public class Writer { PLS COMPLETE THIS CODE // TODO: Implement me! 3 references public string WriteRectangle(int width, int height) { throw new NotImplementedException(); // TODO: Implement me! 3 references public string WriteRectangleHollow(int width, int height) { throw new NotImplementedException();
Implement function WriteRectangle to display a (filled) rectangle on the screen, with the width and height
indicated as parameters, using asterisks.
Implement function WriteRectangle Hollow to display a (hollow, only borders) rectangle on the screen, with the
width and height indicated as parameters, using asterisks. Use dash (-) to as a fill.
Minimum value for width and height is 3.
If parameters does not meet the minimum value, function should throw ArgumentException.
Filled
new Writer.WriteRectangle(4,3);
Should return:
Hollow
new Writer.WriteRectangleHollow(4,3);
Should return:
Transcribed Image Text:Implement function WriteRectangle to display a (filled) rectangle on the screen, with the width and height indicated as parameters, using asterisks. Implement function WriteRectangle Hollow to display a (hollow, only borders) rectangle on the screen, with the width and height indicated as parameters, using asterisks. Use dash (-) to as a fill. Minimum value for width and height is 3. If parameters does not meet the minimum value, function should throw ArgumentException. Filled new Writer.WriteRectangle(4,3); Should return: Hollow new Writer.WriteRectangleHollow(4,3); Should return:
Expert Solution
steps

Step by step

Solved in 5 steps with 7 images

Blurred answer
Knowledge Booster
Hiring Problem
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning