Group
Functions in C#
Objective
1. Define a function named "Double" that accepts an integer as a parameter.
2. Inside the function, multiply the input integer by 2.
3. Return the result.
4. In the Main method, call the function with a test value, such as 7.
5. Display the result using Console.WriteLine.
Write a C# function named "Double" to calculate and return an integer number doubled. For example, Double(7) should return 14.
public static void Main()
{
Console.WriteLine(Double(7)); // This should print 14
}
Example C# Exercise
Show C# Code
using System;
class Program
{
// Main method where the program execution begins
public static void Main()
{
// Call the Double function with an example value and print the result
Console.WriteLine(Double(7)); // This should print 14
}
// Function to double the value of the input integer
public static int Double(int number)
{
// Multiply the input number by 2 and return the result
return number * 2; // Return the doubled value
}
}
Output
14