+ 5
В чём проблема? Я новичок в C# но строил программу взяв информацию из курса, однако код не компилится
using System; void Main() { public void writeln(int Numb) {Console.WriteLine(Numb);} public void writeln(string Txt) {Console.WriteLine(Txt);} writeln("Hello, World!"); }
7 Respostas
+ 7
@Criterios, Вам нужен класс для запуска программы
You need a class to run a program.
+ 16
Translation:
"What is the problem? I'm new to C# and I built the program by taking the information from the course, but the code does not compile"
+ 8
please don't downvote this post.....the person is only asking for help!!!
+ 7
Другие функции записываются внутри основной функции, они должны быть написаны отдельно
The other functions are written inside main function, those should be written separately.
+ 5
@Criterios, Make the functions "static"
https://code.sololearn.com/ctRvu4XbxAY4/?ref=app
+ 2
@Shamina_Yasmin
Это не решает проблемы
+ 1
@Shamima_Yasmin
Тогда вопрос: Вы добавили "class", можно ли написать код выполняющий действие "Вывод" без добавления "class"?
Then the question is: Did you add "class", can I write code that does the "Output" action without adding "class"?