- 2
Practice 4.2 C#
8 Réponses
+ 3
review your lesson(s): that's the very basics of every languages ;)
0
and so?
what's your question?
where's your attempt?
0
and what is the descrption of your assignement?
0
you doesn't put the final dot ^^
- 1
I need to display text, but with input
- 1
string a;
a = "Knowledge is power";
Console.WriteLine(a);
practice says I have no input
- 1
Write a program to print "Knowledge is power."
Don't forget to put a punctuation mark at the end of the quote.
- 1
I think you are looking for:
Console.Readline(); //<Input from user
string msg = “Text”;
//note structure of variable msg declaration
Console.WriteLine(msg); //output
//Output = Text