Computer Science, asked by jyotiradityachk, 17 days ago

WRITE QBASIC PROGRAMAND DRAW A FLOWCHART FOR THE FOLLOWING QUESTION- ENTER SELLING PRICE AND COST PRICE OF AN ARTICLE AND FINR WHETHER PROFIT OR LOSS. ALSO FIND PROFIT PERCENT OR LOSS PERCENT.​

Answers

Answered by anantramdasg
0

Explanation:

import java.util.Scanner;

public class KboatProfit

{

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

System.out.print("Enter cost price of the article: ");

double cp = in.nextDouble();

System.out.print("Enter selling price of the article: ");

double sp = in.nextDouble();

double pl = sp - cp;

double percent = Math.abs(pl) / cp * 100;

if (pl > 0) {

System.out.println("Profit = " + pl);

System.out.println("Profit % = " + percent);

}

else if (pl < 0) {

System.out.println("Loss = " + Math.abs(pl));

System.out.println("Loss % = " + percent);

}

else {

System.out.println("Neither profit nor loss");

}

}

}

Similar questions