Нужно сделать блок схему даного когда программы #include #include #include #include #include #include #include using namespace std; void print(std: : vector & _coll, int i){ if(i > = _coll. return; else{ std: : cout < < _coll[i] < < ' '; print(_coll, i += 2); } } void input(std: : vector & _coll){ int value; std: : cout < < "введите номер : "; while(std: : cin > > value & & value ! = 0){ _coll.push_back(value); std: : cout < < "введите номер : "; } } int main() { std: : vector coll; input(coll); std: : cout < < "\nnumbers: "; print(coll, 0); std: : cout < < std: : endl < < std: : endl; return 0; }

bubink93 bubink93    3   25.04.2019 20:35    3

Другие вопросы по теме Информатика