Ответ:
#include <iostream>;
using namespace std;
int main()
{
int health = 1000;
for(int i = 0; i < 7; i++)
health -= 10;
cout << "You lost 10 hp!";
}
cout << "Your hp now: " << health;
return 0;
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>;
using namespace std;
int main()
{
int health = 1000;
for(int i = 0; i < 7; i++)
{
health -= 10;
cout << "You lost 10 hp!";
}
cout << "Your hp now: " << health;
return 0;
}