C# is a compiled language.
Write a C# statement that will divide variable x by 3 and save the answer into variable a. Assume that all variables have been declared an initialized.
Do not leave spaces in your answers.
Write a single C# statement that will input the amount of money a person would like to invest and save the value into the variable
Write a C# statement that will output the word Bazinga to the screen in a C# Console application? (Spelling and case is important)
What will be the value saved in variable t assuming that variable n contains the value 4. Write down only the number.
t=n%6;
what will be value saved in variable t assuming that variable n contains the value 4. Write down only the number.
t=n%3;
Complete the missing statement in the program below to output the shape. Do not leave spaces in your answer.
$
$$$
$
for(int line=0;line<=4; line++)
Console.WriteLine("$");