fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int i,x;
  6. i=1;
  7. x=50;
  8. while(i<=5)
  9. {
  10. x=x+10;
  11. i++;
  12.  
  13.  
  14. }
  15. printf("%d",x);
  16.  
  17. return 0;
  18.  
  19.  
  20. }
Success #stdin #stdout 0s 4512KB
stdin
Standard input is empty
stdout
100