Advertisements
Advertisements
प्रश्न
An electronic component vendor supplies three products: transistors, resistors and capacitors. The vendor gives a discount of 10% on order of transistor if the order is more than Rs. 1000. On order of more than Rs. 100 for resistors, a discount of 5% is given and discount of 10% is given on order for capacitors of value more than Rs. 500. Assume numeric code 1, 2 and 3 used for transistors, capacitors and resistors respectively. Write a program that reads the product code and order amount and prints out the net amount that the customer is required to pay after discount. (Note: Use switch-case)
उत्तर
#include<stdio.h>
#include<conio.h>
void main()
{
int choice,n,dis;
clrscr();
printf("\n1.Transistor\n2.Capacitor\n3.Resistor\nEnter your choice");
scanf("%d",&choice);
printf("Enter the price");
scanf("%d",&n);
switch(choice)
{
case 1:if(n>1000)
{
dis=n/10;
dis=n-dis;
printf("The total price after discount is %d",dis);
}
else
{
dis=n;
printf("The total price is %d",dis);
}
break;
case 2:if(n>500)
{
dis=n/10;
dis=n-dis;
printf("The total price after discount is %d",dis);
}
else
{
dis=n;
printf("The total price is %d",dis);
}
break;
case 3:if(n>100)
{
dis=n/5;
dis=n-dis;
printf("The total price after discount is %d",dis);
}
else
{
dis=n;
printf("The total price is %d",dis);
}
break;
}
getch();
}
Output:
1.Transistor
2.Capacitors
3.Resistor
Enter your choice 1
Enter the price 1050
The total price after discount is 945
APPEARS IN
संबंधित प्रश्न
Write a program to generate following patterns.
1. 1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Write a program to generate following patterns.
1
2 3
3 4 5
6 7 8 9
Explain break and continue statement with example.
Explain Nested Structure. Write a program using nested structure to create an Array of structure to store the details of N students.
The details are,
1. Student name
2. Student roll no
3. Marks of Physics, Chemistry, Maths.
Calculate total of P-C-M. Display the data in the format
Name Roll no Total marks
Compare the following
break and continue statements
Compare the following
if-else and switch statements
Write a program to print following patterns for N lines.
5 4 3 2 *
5 4 3 * 1
5 4 * 2 1
5 * 3 2 1
* 4 3 2 1
Write a programs to print following patterns for N lines.
5
5 4
5 4 3
5 4 3 2
5 4 3 2 1