Untitled

user_0563559 avatar
user_0563559
c_cpp
11/14/2023 9:09 PM
552 B
12
Indexable
#include <iostream>
using namespace std;


int schet(int a, int b) {
	int sum;
	sum = a * b;
	cout << "Много птичек:" << ' ' << sum;
	return(sum);
}

int main()
{
	setlocale(LC_ALL, "Russian");

	int a, b;

	cout << "Введите количество домов:";
	cin >> a;


	cout << "Введите количество голубей:";
	cin >> b;


	schet(a, b);
}

Editor is loading...
Leave a Comment