Answer:
- Print the values days of bottles.
- Display total number of bottles collecting.
- Display the payout for this transaction.
Explanation:
Program:-
DEPOSIT_PER_BOTTLE = 0.10
another = "Y"
while another=="Y":
print("Input Values 7 days of bottles:")
total = 0
for I in range(7):
collected_bottles = int(input())
total += collected_bottles
payout = total*DEPOSIT_PER_BOTTLE
print("Total number of bottles collected: {:,}".format(total))
print("Payout for this transaction $%.2f"%payout)
another = input("Do you want to complete another transaction? ").upper()
The service that works in conjunction with EC2 Autoscaling in order to provide predictive scaling based on daily and weekly trends is target tracking.
<h3>How can I employ Predictive Scaling with target tracking? </h3>
Predictive Scaling works is known to be one that works in line with target tracking. They both help to make one's EC2 capacity to change more better to one's incoming application traffic.
Note that target tracking scaling policies is one where a user has to select a scaling metric and set a target value.
Learn more about Autoscaling from
brainly.com/question/17661222
Answer:
You have support
Explanation:
I hate it when our classes do this, i had this exact assignment a while back :/
Nice dominoes you got there. Very creative! : D
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
int main()
{
// variable to read row and column of 2-d array
int r,c;
cout<<"enter the number of row:";
// read number of row
cin>>r;
cout<<"enter the number of column:";
// read number of column
cin>>c;
// create an array of size rxc
int arr[r][c];
cout<<"enter the elements of the array:"<<endl;
// read the elements of 2-d array
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
cin>>arr[i][j];
}
}
cout<<"numbers which are greater than 10 in 2-d array"<<endl;
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
// if element is greater than 10, print it
if(arr[i][j]>10)
cout<<arr[i][j]<<" ";
}
cout<<endl;
}
return 0;
}
Explanation:
Read the size of 2-d array i.e row and column.Create a 2-d array of size rxc of integer type.Read the elements of the array. Then traverse the array and if an element if greater than 10 then print that element.
Output:
enter the number of row:3
enter the number of column:3
enter the elements of the array:
23 45 53 78 1 9 6 8 77
numbers which are greater than 10 in 2-d array
23 45 53
78
77
Answer:
WHERE IS THE PICTURE??????????