#include<iostream>
using namespace std;
int main()
{
int i=119;
while(i>=3){
cout<<" "<<i;
i--;
}
system("pause");
return 0;
}
cout of this is counting 119 decrement til 3 but output should this:
119 94 72 53 37 24 14 7 3 could any1 help? thanks a lot guys!:D