#include <iostream>
using namespace std;
int main()
{
double basic = 1000;
double DA = (10/100) * basic;
double HRA = (30/100) * basic;
cout<<"DA = "<<DA<<endl; // why the answer is 0 ?
cout<<"HRA = "<<HRA<<endl; // why the answer is 0 ?
return 0;
}
Please Help me....I do not understand why the DA and HRA is giving 0 answer?