NEED HELP :(


can u help me to my project ?

i need to run this and to get the output of this, using a class ...
do you have any idea ? coz i dont know how

how could i run this one ??? i need codes :( i hope u can help me thank you so much..

my instructor give me this one :

LITER=5;
PRICE:50;
AMOUNT=PRICE*LITER
FOR(A=0;A<AMOUNT;A++)}
FOR(B=0;B<1000;B++){

cout<<a;
}
}
Please do not post more than once:
http://www.cplusplus.com/forum/beginner/174711/
IM SORRY :(
Your code should be in the following manner.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>

using namespace std;

int main()
{
    int LITER=5;
    int PRICE=50;
    int AMOUNT=PRICE*LITER;
    for(int A=0;A<AMOUNT;A++)
    {
        for(int B=0;B<1000;B++)
        {
            cout<<A;
        }
    }
    return 0;
}
@HabibAurangabad: please don't respond to duplicated threads. The original thread is over here:
http://www.cplusplus.com/forum/beginner/174711/
Topic archived. No new replies allowed.