+ 1
To print the pattern
I I C I C S I C S E
2 ответов
+ 2
#include <iostream>
int main()
{
char characters[] = {'I', 'C', 'S', 'E'};
const int SIZE = sizeof(characters) / sizeof(char);
for(int i = 0; i < SIZE; ++i){
for(int j = 0; j <= i; ++j)
{
std::cout << characters[j] << " ";
}
std::cout << std::endl;
}
}