#include <stdio.h>
int main() {
float pa;
printf("Enter Purchase Amount:");
scanf("%f",&pa);
if(pa>=2000)
{
pa = pa - (pa*0.2);
}
printf("Net Payable=%.2f",pa);
}
How to Combat Overthinking or Negative Thoughts? 1. Don’t Fight Your Thoughts Trying to suppress or control negative thoughts often backfire...
No comments:
Post a Comment