fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. class Table
  8. {
  9. public static void main(String[] args)
  10. {
  11. System.out.println("Conversion Table");
  12. final int TOTAL = 100;
  13. for (int c = 0; c <= TOTAL; c+=5)
  14. {
  15. System.out.println((c*9/5)+32 +"\t");
  16. {
  17. System.out.println();
  18. }
  19. }
  20. }
  21. }
Success #stdin #stdout 0.08s 2184192KB
stdin
Standard input is empty
stdout
Conversion Table
32	

41	

50	

59	

68	

77	

86	

95	

104	

113	

122	

131	

140	

149	

158	

167	

176	

185	

194	

203	

212