- 3
can anyone help?
someone help me finish the C Sharp course!
19 Answers
+ 3
Yes. What is your doubt?
+ 2
Help with what exactly?🤨
0
well, or will you help with 1 project?
0
Yes please be direct what is the issue? Explain the best you can.
0
I absolutely do not understand task 1 of the project.
0
What is the project number?
0
Project number 9
0
9 what? 9.2 Practice?
0
the project is called "time to drink coffee".
0
81 Code Project Coffee Time?
0
Yes
0
Whats your attempt?
0
attempts in the region of a hundred.
0
Copy and Paste your latest attempt. Share it here.
0
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
int discount = Convert.ToInt32(Console.ReadLine());
Dictionary<string, int> coffee = new Dictionary<string, int>();
coffee.Add("Americano", 50);
coffee.Add("Latte", 70);
coffee.Add("Flat White", 60);
coffee.Add("Espresso", 60);
coffee.Add("Cappuccino", 80);
coffee.Add("Mocha", 90);
}
}
} is it that I learned to make a program in them, I just went back to the beginning
0
You're attempt isn't in there...
0
Whats wrong
- 1
6. Develop algorithms using dynamic variables and pointers, to construct a singly linked list consisting of the following information in each node: student id (integer), student name (character string) and semester (integer). The operations to be supported are:
a. Inserting a nodei) at the front of a list ii) at the rear of the list ii) at any position in the list
c. Searching a node based on student id. If the specified node is not present in the list an error message should be displayed.
b. Deleting a node based on student id. If the specified node is not present in the list, an error Message should be displayed.
d. Displaying all the nodes in the list.
Code the same in C++