Составьте функцию, выводящую строку из символов количество, а также вид, которых вводятся с клавиатуры.
Решение:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#include «stdafx.h»
#include <iostream> #include <windows.h> using namespace std; void fun_symbol(int _long, char s) { for (int j=0; j<_long; j++) cout<<s; } int main() {SetConsoleCP(1251); SetConsoleOutputCP(1251); int long_s; char symbol; cout<<» Введите длину строки >> «; cin>>long_s; cout<<» Введите символ >> «; cin>>symbol; fun_symbol(long_s, symbol); system(«pause>>void»); return 0; } |