Написати програму, яка знаходить суму, добуток, різницю, частку двох чисел
Ответы на вопрос
Ответил anuapolina08
1
Програма на мові C:
#include<stdio.h>
#include<math.h>
int main()
{ int a,b, sum, prod, sub;
float div;
printf("Input any two numbers separated by comma:");
scanf("%d,%d", &a,&b);
sum = a + b;
printf("The sum of the numbers a and b:%d\n", sum);
sub = a - b;
printf("The difference of the numbers a and b:%d\n", sub);
prod = a*b;
printf("The product of the numbers a and b:%d\n", prod);
div = (float)a/b;
printf("The quotient of the numbers a and b:%f\n", div);
return 0;
}
+ скріншоти працюючої програми(вгорі)
Приложения:
anuapolina08:
А чому ви не вказали потрібну мову програмування?
Новые вопросы
Русский язык,
1 год назад
Английский язык,
1 год назад
Русский язык,
6 лет назад
Математика,
8 лет назад