Q:

Write a C# Sharp program to calculate profit and loss on a transaction

0

Write a C# Sharp program to calculate profit and loss on a transaction

Sample Output:

Calculate profit and loss:                                                                                    
----------------------------                                              
Input Cost Price: 1000                                                                                        
Input Selling Price: 1200                                                                                     
                                                                                                              
You can booked your profit amount : 200

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;  
public class Exercise17  
{  
    public static void Main()  
{  
    int cprice,sprice, plamt; 

           Console.Write("\n\n");
           Console.Write("Calculate profit and loss:\n");
           Console.Write("----------------------------");
           Console.Write("\n\n");
      

     Console.Write("Input Cost Price: ");  
     cprice= Convert.ToInt32(Console.ReadLine()); 
     Console.Write("Input Selling Price: ");  
     sprice= Convert.ToInt32(Console.ReadLine());  
      
    if(sprice>cprice) 
    {  
        plamt = sprice-cprice;  
        Console.Write("\nYou can booked your profit amount : {0}\n", plamt);  
    }  
    else if(cprice>sprice)  
    {  
        plamt = cprice-sprice;  
        Console.Write("\nYou got a loss of amount : {0}\n", plamt);  
    }  
    else   
    {  
        Console.Write("\nYou are running in no profit no loss condition.\n");  
    }  
}
}  

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now