can anyone help? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

can anyone help?

someone help me finish the C Sharp course!

23rd Jul 2022, 2:49 AM
Esikod
Esikod - avatar
19 Answers
+ 3
Yes. What is your doubt?
23rd Jul 2022, 5:10 AM
Chris Coder
Chris Coder - avatar
+ 2
Help with what exactly?🤨
23rd Jul 2022, 8:42 PM
Genesis Ibukunoluwa Owoeye
Genesis Ibukunoluwa Owoeye - avatar
0
well, or will you help with 1 project?
23rd Jul 2022, 5:11 AM
Esikod
Esikod - avatar
0
Yes please be direct what is the issue? Explain the best you can.
23rd Jul 2022, 5:13 AM
Chris Coder
Chris Coder - avatar
0
I absolutely do not understand task 1 of the project.
23rd Jul 2022, 5:15 AM
Esikod
Esikod - avatar
0
What is the project number?
23rd Jul 2022, 5:17 AM
Chris Coder
Chris Coder - avatar
0
Project number 9
23rd Jul 2022, 5:18 AM
Esikod
Esikod - avatar
0
9 what? 9.2 Practice?
23rd Jul 2022, 5:20 AM
Chris Coder
Chris Coder - avatar
0
the project is called "time to drink coffee".
23rd Jul 2022, 5:22 AM
Esikod
Esikod - avatar
0
81 Code Project Coffee Time?
23rd Jul 2022, 5:25 AM
Chris Coder
Chris Coder - avatar
0
Yes
23rd Jul 2022, 5:25 AM
Esikod
Esikod - avatar
0
Whats your attempt?
23rd Jul 2022, 5:29 AM
Chris Coder
Chris Coder - avatar
0
attempts in the region of a hundred.
23rd Jul 2022, 5:30 AM
Esikod
Esikod - avatar
0
Copy and Paste your latest attempt. Share it here.
23rd Jul 2022, 5:32 AM
Chris Coder
Chris Coder - avatar
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
23rd Jul 2022, 5:35 AM
Esikod
Esikod - avatar
0
You're attempt isn't in there...
23rd Jul 2022, 5:44 AM
Chris Coder
Chris Coder - avatar
23rd Jul 2022, 5:44 AM
Chris Coder
Chris Coder - avatar
0
Whats wrong
23rd Jul 2022, 7:38 PM
ProBloxNl
ProBloxNl - avatar
- 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++
23rd Jul 2022, 6:35 AM
G Ganesh