Kristen Whitchurch

Director Of Business Development at DAG Tech

Kristen Whitchurch has over 15 years of work experience. Kristen began their career in 2004 as a Receptionist/Inventory Manager at Bluegreen Corporation, where they also held the role of Sales/Quality Manager. In 2007, they were hired as a receptionist at Associated Dentists and was promoted to Operations Manager after their first year. In this role, they managed a team of office administrators and was responsible for maintaining complex equipment maintenance schedules, negotiating contracts with suppliers and outsourced laboratories, and managing the marketing/promotional activities for the clinic. From 2014 to 2017, Kristen held the role of Product Manager at XYZ Ventures, followed by Technical Project Manager at Biopic Medical from 2017 to 2019. Most recently, they have been the Director of Business Development at DAG Tech since 2019.

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace _05.Pizza_Ingredients

{

class Program

{

static void Main(string[] args)

{

string[] ingredients = Console.ReadLine().Split(' ');

int lenght = int.Parse(Console.ReadLine());

int count = 0;

for (int i = 0; i < ingredients.Length; i++)

{

if (ingredients[i].Length == lenght)

{

Console.WriteLine($"Adding {ingredients[i]}.");

count++;

}

if (count == 10)

{

break;

}

}

Console.WriteLine($"Made pizza with total of {count} ingredients.");

Console.Write("The ingredients are: ");

for (int i = 0; i < count; i++)

{

if (i == count - 1)

{

Console.Write($"{ingredients[i]}.");

}

else

{

Console.Write($"{ingredients[i]}, ");

}

}

Console.WriteLine();

}

}

}

Links