fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. float principal, rate, time, interest;
  5.  
  6. // Ask for user input
  7. printf("Enter the principal amount: ");
  8. scanf("%f", &principal);
  9.  
  10. printf("Enter the rate of interest (in percentage): ");
  11. scanf("%f", &rate);
  12.  
  13. printf("Enter the time period (in years): ");
  14. scanf("%f", &time);
  15.  
  16. // Calculate simple interest
  17. interest = (principal * rate * time) / 100;
  18.  
  19. // Output the result
  20. printf("The simple interest is: %.2f\n", interest);
  21.  
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Enter the principal amount: Enter the rate of interest (in percentage): Enter the time period (in years): The simple interest is: 0.00