1. convert the following algebrac expression to basic expression
2x^2 + 3y - 6=0
a+xy
2. using BASIC, write a program to calculate the sum of four (4) numbers
Answers
Answered by
4
1.
- 2*x*x+3*y-6=0
- a+x*y
2.
{
int a,b,c,d,sum;
sum=a+b+c+d;
}
Similar questions