How to get output? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to get output?

27th Jan 2017, 9:56 AM
Faryal Siddiqui
Faryal Siddiqui - avatar
6 Answers
0
in which programming
27th Jan 2017, 9:58 AM
SUDHIR KUMAR SAURAV
SUDHIR KUMAR SAURAV - avatar
0
C#
27th Jan 2017, 9:58 AM
Faryal Siddiqui
Faryal Siddiqui - avatar
0
You can use Console.Writeline("your output"); It's unclear what kind of output you are looking for?
27th Jan 2017, 9:59 AM
Alex
Alex - avatar
0
I am doing the basic concepts write here and they are asking the output of 15 and 6
27th Jan 2017, 10:00 AM
Faryal Siddiqui
Faryal Siddiqui - avatar
0
var x = 15; var y = 6; var z = x + y; Console.WriteLine(
quot;output of {x} and {y} is {z}");
27th Jan 2017, 10:05 AM
Alex
Alex - avatar
0
in case of just any text that don't require declaration use Console.WriteLine(" your text between the quotes");
27th Jan 2017, 1:03 PM
Edûuh Mûraya
Edûuh Mûraya - avatar