// Sample Solution
using System;
namespace BuildingArrays
{
class Program
{
static void Main(string[] args)
{
string[] summerStrut;
summerStrut = new string[] {"Juice", "Missing U", "Raspberry Beret", "New York Groove", "Make Me Feel", "Rebel Rebel", "Despacito", "Los Angeles"};
int[] ratings = {1, 5, 2, 3, 5, 1, 1, 4};
}
}
}
No comments:
Post a Comment