Ответ:
Объяснение:
#include <iostream>
using namespace std;
int main()
{
int a = 550;
while (a>0)
cout << '"' << a << "-" << 5<<"="<<a-5<<'"'<<endl;
a -= 5;
}
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
#include <iostream>
using namespace std;
int main()
{
int a = 550;
while (a>0)
{
cout << '"' << a << "-" << 5<<"="<<a-5<<'"'<<endl;
a -= 5;
}
return 0;
}