Computer Science, asked by manojvidyarthi1978, 5 months ago

a jewelry shop is offering a festival discount according to the shown criteria shalini has been given the task to write a program in small basic to input the amount calculate and display the discount amount and net amount

Answers

Answered by rudrakakde04
0

Answer:

#include<stdio.h>

#include <conio.h>

void main()

{

int n , d ,h;

clrscr();

printf( "Enter the amount n :" );

scanf( "%d" , &n )

printf ("Enter the discount amount d : ");

scanf("%d", &d );

print ("Enter the net amount h : ");

scanf("%d", &h);

getch();

}

Similar questions