Ad
using System;

public class Kumite
{
  public void PrintAnArray(string [] words) {
    // Write all the words to the console

  }

  public int SumTheIntegers(int [] nums) {
    // Add up all the integers and return the sum
  }
}
using System;

public class Kumite
{
  public void BasicVariables(int v) {
    int count = 0;
    // Write the name of the variable to the log
    Console.WriteLine("<change this>");
    // Write the type of the variable to the log
    Console.WriteLine("<change this>");
    // set the value of the variable to v (see the function parameters)
    // <code here>
    // Write the variable to the log
    // <code here>
  }
  
  public string NamaeWa(string str) {
    // Return "My name is <str>"
    return "<change this>";
  }

}

Practicing if else statements

using System;

public class Kumite
{
  public bool MoreThan14(int num) {
    // Create an integer variable with the value 14
    
    // return true if your variable is bigger than num

  }
    
  // If the food is nasi lemak, return meal
  // If the food is burger, return meal
  // If the food is cendol or ice cream, return dessert
  public string MealOrDessert(string food) {
    return;
  }
}