Відповідь:
Ввести три числа и найти их сумму и произведение
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL , "Rus");
int a,b,c,sum,product;
cout << "a: ";
cin >> a;
cout << "b: ";
cin >> b;
cout << "c: ";
cin >> c;
sum = a+b+c;
product = a * b * c;
cout << "Сума = " << sum << endl;
cout << "Произведение = " << product << endl;
return 0;
}
Ввести три числа найти их сумму произведение и среднее арифметическое#include <iostream>
float average;
average = (a+b+c) / 3.;
cout << "Среднее арифметическое = " << average << endl;
Ввести три числа и найти наибольшее из них
if(a > b && a > c){
cout << "Наибольшее число : " << a << endl;
if(b > a && b > c){
cout << "Наибольшее число : " << b << endl;
if(c > a && c > b){
cout << "Наибольшее число : " << c << endl;
Ввести пять чисел и найти наибольшее из них
int a,b,c,d,e,sum,product;
cout << "d: ";
cin >> d;
cout << "e: ";
cin >> e;
if(a > b && a > c && a > d && a > e){
if(b > a && b > c && b > d && b > d){
if(c > a && c > b && c > d && c > e){
if(d > a && d > b && d > c && d > e){
cout << "Наибольшее число : " << d << endl;
if(e > a && e > b && e > c && e > d){
cout << "Наибольшее число : " << e << endl;
const int size = 10;
void cinarr(int *arr,const int size){
int counter = 1;
for(int i = 0; i < size; i++){
cout << "Введите " << counter << " елемент массива: ";
cin >> arr[i];
counter++;
void printarr(int *arr, const int size){
cout << arr[i] << " ";
int expression(int *arr,const int size,int number){
int counternumber = 0;
if(number == arr[i]){
counternumber++;
return counternumber;
int number;
cout << "Введите число которое будем искать: ";
cin >> number;
int *arr = new int [size];
cinarr(arr,size);
printarr(arr,size);
cout << "\nТаких чисел в массиве: " << expression(arr,size,number) << endl;;
delete [] arr;
Пояснення:
Відповідь:
Ввести три числа и найти их сумму и произведение
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL , "Rus");
int a,b,c,sum,product;
cout << "a: ";
cin >> a;
cout << "b: ";
cin >> b;
cout << "c: ";
cin >> c;
sum = a+b+c;
product = a * b * c;
cout << "Сума = " << sum << endl;
cout << "Произведение = " << product << endl;
return 0;
}
Ввести три числа найти их сумму произведение и среднее арифметическое#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL , "Rus");
int a,b,c,sum,product;
float average;
cout << "a: ";
cin >> a;
cout << "b: ";
cin >> b;
cout << "c: ";
cin >> c;
sum = a+b+c;
product = a * b * c;
average = (a+b+c) / 3.;
cout << "Сума = " << sum << endl;
cout << "Произведение = " << product << endl;
cout << "Среднее арифметическое = " << average << endl;
return 0;
}
Ввести три числа и найти наибольшее из них
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL , "Rus");
int a,b,c,sum,product;
float average;
cout << "a: ";
cin >> a;
cout << "b: ";
cin >> b;
cout << "c: ";
cin >> c;
if(a > b && a > c){
cout << "Наибольшее число : " << a << endl;
}
if(b > a && b > c){
cout << "Наибольшее число : " << b << endl;
}
if(c > a && c > b){
cout << "Наибольшее число : " << c << endl;
}
return 0;
}
Ввести пять чисел и найти наибольшее из них
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL , "Rus");
int a,b,c,d,e,sum,product;
float average;
cout << "a: ";
cin >> a;
cout << "b: ";
cin >> b;
cout << "c: ";
cin >> c;
cout << "d: ";
cin >> d;
cout << "e: ";
cin >> e;
if(a > b && a > c && a > d && a > e){
cout << "Наибольшее число : " << a << endl;
}
if(b > a && b > c && b > d && b > d){
cout << "Наибольшее число : " << b << endl;
}
if(c > a && c > b && c > d && c > e){
cout << "Наибольшее число : " << c << endl;
}
if(d > a && d > b && d > c && d > e){
cout << "Наибольшее число : " << d << endl;
}
if(e > a && e > b && e > c && e > d){
cout << "Наибольшее число : " << e << endl;
}
return 0;
}
Відповідь:
#include <iostream>
using namespace std;
const int size = 10;
void cinarr(int *arr,const int size){
int counter = 1;
for(int i = 0; i < size; i++){
cout << "Введите " << counter << " елемент массива: ";
cin >> arr[i];
counter++;
}
}
void printarr(int *arr, const int size){
for(int i = 0; i < size; i++){
cout << arr[i] << " ";
}
}
int expression(int *arr,const int size,int number){
int counternumber = 0;
for(int i = 0; i < size; i++){
if(number == arr[i]){
counternumber++;
}
}
return counternumber;
}
int main(){
setlocale(LC_ALL , "Rus");
int number;
cout << "Введите число которое будем искать: ";
cin >> number;
int *arr = new int [size];
cinarr(arr,size);
printarr(arr,size);
cout << "\nТаких чисел в массиве: " << expression(arr,size,number) << endl;;
delete [] arr;
return 0;
}
Пояснення: