Answer:
Algorithm
Start
Int n // To represent the number of array
Input n
Int countsearch = 0
float search
Float [] numbers // To represent an array of non decreasing number
// Input array elements but first Initialise a counter element
Int count = 0, digit
Do
// Check if element to be inserted is the first element
If(count == 0) Then
Input numbers[count]
Else
lbl: Input digit
If(digit > numbers[count-1]) then
numbers[count] = digit
Else
Output "Number must be greater than the previous number"
Goto lbl
Endif
Endif
count = count + 1
While(count<n)
count = 0
// Input element to count
input search
// Begin searching and counting
Do
if(numbers [count] == search)
countsearch = countsearch+1;
End if
While (count < n)
Output count
Program to illustrate the above
// Written in C++
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main()
{
// Variable declaration
float [] numbers;
int n, count;
float num, searchdigit;
cout<<"Number of array elements: ";
cin>> n;
// Enter array element
for(int I = 0; I<n;I++)
{
if(I == 0)
{
cin>>numbers [0]
}
else
{
lbl: cin>>num;
if(num >= numbers [I])
{
numbers [I] = num;
}
else
{
goto lbl;
}
}
// Search for a particular number
int search;
cin>>searchdigit;
for(int I = 0; I<n; I++)
{
if(numbers[I] == searchdigit
search++
}
}
// Print result
cout<<search;
return 0;
}
$12/25 pounds
12/25= $0.48
$0.48/pound is your answer
Answer:
The answer is below
Step-by-step explanation:
The standard form of the equation of an ellipse with major axis on the y axis is given as:

Where (h, k) is the center of the ellipse, (h, k ± a) is the major axis, (h ± b, k) is the minor axis, (h, k ± c) is the foci and c² = a² - b²
Since the minor axis is at (37,0) and (-37,0), hence k = 0, h = 0 and b = 37
Also, the foci is at (0,5) and (0, -5), therefore c = 5
Using c² = a² - b²:
5² = a² - 37²
a² = 37² + 5² = 1369 + 25
a² = 1394
Therefore the equation of the ellipse is:

Answer:
11. b
10.d
9.c
7.b
1.d
the rest I can't see clearly
please give brainiest
Step-by-step explanation:
11.
3/x-4=7/x
*cross multiply
3x=7 (x-4)
3x=7x-28
28=7x-3x
28=4x
x=7
10.
SOHCAHTOA
Cos☆=11/14
cos^-1 (11/14)
☆=38.21 degrees
9.
MLN CONGRUENT TO WBN
ML/WB=LN/BN=MN/WN
LN/BN=10/6
ML/WB
24/x=10/6
24x6=10x
144÷10
=14.4
6^2+14.4^2
=243.36
squareroot
=15.6
Answer:
38.5
Step-by-step explanation:
Lets say, first number = x
Second number = 3x+7
Total = 49
(x)+(3x+7)= 49
4x+7 = 49
4x = 42
x = 42/4
x= 10.5
x= 10.5
3x+7 = 3(10.5)+7 = 38.5
Hope this helps!!