/*
PROGRAM BY: RETUERTO, MICHAEL R.
SECTION: IC2MB
*/
using System;
public class Activity1D {
public static void Main (String[]args) {
string[]c_brands = new string[5];
c_brands[0] = "Apple";
c_brands[1] = "Samsung";
c_brands[2] = "Huawei";
c_brands[3] = "Asus";
c_brands[4] = "Oppo";
Console.Write("[ == List of Smartphone Brand: ==]\n");
int a = 0;
while (a<5){
Console.Write("Element index ["+a+"]) = "+c_brands[a]);
a++;
}