Math, asked by abyan244, 3 months ago

Example 5:
Selli
for to make a gain of 7.5%?
By selling a car for Rs 540,000, Ahmed had a loss of 20%. How much should he sell it​

Answers

Answered by Anonymous
1

Answer:

Step-by-step explanation:

import java.applet.*;

import java.awt.*;

class ChessBoard extends Applet

{

int x, y, dx, dy;

public void paint(Graphics g)

{

x = 1;

y = 1;

dx = 50;

dy = 50;

for (int i = 1; i <= 8; i++)

{

for (int j = 1; j <= 8; j++)

{

if (i % 2 == 1)

{

if (j % 2 == 0)

{

g.setColor(Color.WHITE);

}

else

{

g.setColor(Color.BLACK);

}

}

else

{

if (j % 2 == 0)

{

g.setColor(Color.BLACK);

}

else

{

g.setColor(Color.WHITE);

}

}

g.fillRect(x, y, dx, dy);

x = x + dx;

}

y = y + dy;

x = 1;

}

}

}

Similar questions