fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float p=1,r=1,t=1;
  5. float SI=p*r*t/100;
  6. printf("SI=%f/100",SI);
  7. // your code goes here
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
SI=0.010000/100