Answer the question
In order to leave comments, you need to log in
Why is the error in c++ code?
I run the program
#include <iostream>
using namespace std;
int main()
{
for (double i = 0; i < 100; i++) {
cout << i << "земной фут равен" << i * 0, 19 << "футов \n" ;
};
}
Answer the question
In order to leave comments, you need to log in
#include <iostream>
using namespace std;
int main()
{
for (double i = 0; i < 100; i++)
{
cout << i << "земной фут равен" << i * 0,19;
cout << "футов \n" << endl;
};
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question