Computer Science, asked by shahmehak2484, 1 year ago

How to get repair option in windows 10 while starting?

Answers

Answered by Anant67
1
If Windows isn’t starting properly, you can often use the integrated “startup repair” tool to fix it. This recovery tool will scan your PC for problems like missing or damaged system files. It can’t fix hardware issues or Windows installation problems, but it’s a great first place to start if you’re experiencing trouble booting into Windows.

This tool is available on Windows 7, 8, and 10. You can access it from the built-in Windows recovery tools (if they built properly), recovery media, or a Windows installation disc.

Answered by AbhinavRocks10
7

Explanation:

//to calculate the selling price

class price

{

void method(int mp)

{

int d=0;

double sp=0;

if(mp>=1 &&mp<=2000)

d=0;

else if(mp>=2001 && mp<=5000)

d=4;

else if(mp>=5001 && mp<=7500)

d=8;

else

d=10;

sp=mp-(mp*d)/100.0;

System.out.println("MARKED PRICE "+mp);

System.out.println("SELLING PRICE "+sp);

}

}

Similar questions