fork download
  1. int main()
  2. {
  3. float y, k; // yardas, kilometros
  4.  
  5. y = 50;
  6.  
  7. k= y*36 * 2.54 / 100 / 1000;
  8.  
  9. printf("%f", k);
  10.  
  11.  
  12. getch();
  13.  
  14. return 0;
  15. }
  16.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Steve Austin
compilation info
prog.cs(1,5): error CS0116: A namespace can only contain types and namespace declarations
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty