0
How to get output?
6 Respuestas
0
in which programming
0
C#
0
You can use Console.Writeline("your output");
It's unclear what kind of output you are looking for?
0
I am doing the basic concepts write here and they are asking the output of 15 and 6
0
var x = 15;
var y = 6;
var z = x + y;
Console.WriteLine(quot;output of {x} and {y} is {z}");
0
in case of just any text that don't require declaration
use
Console.WriteLine(" your text between the quotes");