Answer: El mayor lado del rectangulo tiene 10cm
Step-by-step explanation:
El perímetro de un rectángulo puede escribirse como:
P = 2*L + 2*A
Donde L es el largo y A es el ancho.
Sabemos que uno de los lados es 6cm mas largo que el otro, entonces podemos escribir:
L = A + 6cm.
P = 28cm = 2*L + 2*A
podemos reemplazar la primera ecuación en la segunda:
28cm = 2*(A + 6cm) + 2*A
28cm = 12cm + 4*A
28cm - 12cm = 4*A
16cm/4 = A
4cm = A.
Entonces el ancho es 4 cm, y el largo es L = 4cm + 6cm = 10cm
The answer to this question is 8-2.
I will assume that 0.62 is an exponent then
amount left after t seconds = f(6) = 5 - 0.82(6)^0.62
= 2.51 gallons to nearest hundredth.
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;
}
Answer:
168
Step-by-step explanation:
(-40+8)×(-6)-24
=(-32)×(-6)-24
=192-24
=168