pLEASE I NEED YOUR ASSISTANCE
Write a C# program to print a table of grocery items and their prices. The program must have an input of items and prices of the items. Note: As you have not done instructions to input numeric values, let us assume that the prices are also string-variables.
The format of the input must be:
Input
item1,
priceBread
Input
item2,
priceButter
Input
item3,
priceMilk
Input
item4,
priceMeat
Note: To do string input:
string item1;
//declaration of item1
item1 = console.ReadLine();
//read in the value of item1
The same for the other variables…..
The format of the table to be printed must be as follows:
************************************************************
*
ITEM NAME
ITEM PRICE
*
*
Bread
R10
*
*
Butter
R25
*
*
Milk
R15
*
*
Meat
R56
*
************************************************************r