SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Barbara Dolye
Chapter:
Introduction To Computing And Programming
Exercise:
Programming Exercises
Question:4 | ISBN:9781285096261 | Edition: 4

Question

Develop an application that produces a banner containing information about your project. Items you might include are your programming assignment number, name, date submitted and the purpose of the application. Label each item. These are items you might want to include as internal documentation on future programming assignments. Your output for your banner might look similar to the following:

In addition to printing the output screen banner shown in the preceding code segment, be sure to include appropriate comments as internal documentation to your program.

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer

Program:

/* Programmer Name: Alma King
   Date : September 17
   Exercise: Programming Assignment #4. */


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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            //Prints the display output
            Console.WriteLine("*********************************************************");
            Console.WriteLine("**   Programming Assignment #4                         **");
            Console.WriteLine("**   Developer: Alma King                              **");
            Console.WriteLine("**   Date Submitted: September 17                      **");
            Console.WriteLine("**   Purpose: Provide internal documentation.          **");
            Console.WriteLine("*********************************************************");
            Console.ReadKey();
        }

        
    }
}

Sample output:

0 0

Discussions

Post the discussion to improve the above solution.