Looking for trustworthy answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Explore thousands of questions and answers from knowledgeable experts in various fields on our Q&A platform. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

Use din to read integers from input until-90 is read. For each remaining integer read before-90
If the integer is less than or equal to 400, output "Request accepted".
Otherwise, output "Amount exceeded coverage"
End each output with a newline.
Ex: If the input is 397 380 406 -90, then the output is
Request accepted
Request accepted
Amount exceeded coverage
1 #include
2 using namespace std;
3
4 int main() {
5
6 Your code goes here
7
8 return 0;
9 }


Sagot :