public void Add(String name, String... phones)
{
ArrayList<String> arrayList = new ArrayList<>();
arrayList.addAll(Arrays.asList(phones));
if(contacts.containsKey(name)) {
arrayList.addAll(contacts.get(name));
contacts.put(name, arrayList);
}
else {
contacts.put(name, arrayList);
}
}
bool x;
private void button1_Click(object sender, EventArgs e)
{
// сортировка поочерёдно в обе стороны по первому столбцу
dataGridView1.Sort(dataGridView1.Columns[0], x ? ListSortDirection.Ascending : ListSortDirection.Descending);
x = !x;
}
if (mas[i] % 2 == 0 && mas[i - 1] % 2 != 0 || mas[i] % 2 != 0 && mas[i - 1] % 2 == 0) continue;
namespace Test
{
class Program
{
public static void checkArray(int[] mas)
{
int check = 0;
for (int i = 1; i < mas.Length; i++)
{
if (mas[i] % 2 == 0 && mas[i - 1] % 2 != 0 || mas[i] % 2 != 0 && mas[i - 1] % 2 == 0)
{
check++;
if (check == (mas.Length - 1))
Console.WriteLine("Массив №1 прошёл проверку. 0");
}
else
Console.WriteLine("Массив №1 не прошёл проверку. Индекс-" + i);
}
}
static void Main(string[] args)
{
int[] mas = { 1, 2, 3, 4 };
int[] mas1 = { 1, 2, 3, 5 };
checkArray(mas);
checkArray(mas1);
Console.Read();
}
}
}