PRINT RESTURANT BILL IN C# PROGRAM.
RESTURANT BILL PRINT resturanr bill in c# output. Output: CODE: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Resturant_bill { class Program { static void Main(string[] args) { string itemname1 = "Burger"; double itemprice1 = 10.0; int quantity1 = 2; string itemname2 = "Fries"; double itemprice2 = 5.0; int quantity2 = 1; string itemname3 = "Cold drink"; double itemprice3 = 7.0; int quantity3 = 3; double item...