The answer is the amount of money you put in it, brainliest please.
A technician's first step with an A/C system is to perform visual inspection
Answer:
margins
Explanation:
the definition margins are the edges
I would say A because it was talking about something in the present but what they were talking about was in past. so I would think A
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program starts here
#include<iostream>
using namespace std;
int main()
{
// Declare integer variable n which serves as the quotient.
int n;
// Prompt to enter any number
cout<<"Enter any integer number: ";
cin>>n;
// Check for divisors using the iteration below
for(int I = 1; I<= n; I++)
{
// Check if current digit is a valid divisor
if(n%I == 0)
{
// Print all divisors
cout<<I<<" ";
}
}
return 0;
}