Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

C# Code to multiply numbers in C#

D

Deleted member 613

Guest
C#:
using System;
class MainClass {
 public static void Main (string[] args) {

Console.WriteLine("Please enter a number");
                int num1 = Console.ReadLine();
                Console.WriteLine("Please enter another number");
                int num2 = Console.ReadLine();
                int num3 = num1 * num2;
                Console.WriteLine("Function");
                Console.WriteLine(num3);

}
}
All the numbers are entered by the user ;)
 
Last edited by a moderator:
Hello!

Could you please share how your code works, and provide a bit of explanation to your code, what it does etc.

We want Coders here at Code Forum to understand what they're looking at.
 
Seeing as no explanation has been provided, I'll happily provide one on behalf of the poster.

The program is extremely simple. The program starts by asking for one number and then once you insert that number, it asks for another one. Then, num3, has its value initialized by multiplying together num1 and num2(The numbers that you fed values to). Finally, your end result is printed off.

I hope this provides an explanation as to what the code does. Yes, it's extremely simple, but even some beginners may not understand it.
 
Seeing as no explanation has been provided, I'll happily provide one on behalf of the poster.

The program is extremely simple. The program starts by asking for one number and then once you insert that number, it asks for another one. Then, num3, has its value initialized by multiplying together num1 and num2(The numbers that you fed values to). Finally, your end result is printed off.

I hope this provides an explanation as to what the code does. Yes, it's extremely simple, but even some beginners may not understand it.
Yep,that's how.
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom