34 of 100 menu

C++ Taskbook Level 4.4

Given a string, remove all vowels from it.

Given an integer, check that this number has only one divisor other than itself and one.

Write a program that will generate the following string:

"xxx xxx xxx"

Given an array:

int[] [1, 2, 3, 4, 5, 6]

Get every second element from it:

int[] [1, 3, 5]

Given an array of characters containing numbers:

chars[] {'1', '2', '3', '4', '5'};

Merge the elements of this array into an integer:

int 12345
enru