Computer Science, asked by IRONMAN1714, 1 day ago

The cost of one chair is Rs. 750 find the cost of 10 such chair of the shopkeeper spends 50 rupees extra on each chair on its transportation. Write a java program.​

Answers

Answered by SumitPareek
0

Answer:

40,000

Explanation:

the cost of 1 chair = ₹750

cost of 10 such chairs

transportation spends = ₹50 extra

then , 750 + 50 = 800

800 cost of one chair

×10 cost of such chairs

--------

000

800x

--------

8000 cost of total chair

Answered by shubhamkum447
2

Explanation:

import java.util.*;

class Program1

{

public static void main (String args[ ] )

{

Scanner in=new Scanner (System.in);

int a=0,b=0,ts=0;

System.out.println("Cost of one chair=750");

a=750*10;

System.out.println("Cost of 10 chairs="+a);

System.out.println("transport cost on one chair= 50");

b=50*10;

ts=a+b;

System.out.println("Total cost="+ts);

}

}

please Mark me BRAINLIEST and like

Similar questions