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. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. }
  14. }
Success #stdin #stdout 0.12s 54668KB
stdin
<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>미로 게임 앱</title>
  <link rel="manifest" href="manifest.json" />
  <style>
    body {
      margin: 0; padding: 0;
      font-family: Arial, sans-serif;
      background: #eee;
      display: flex; flex-direction: column; align-items: center;
    }
    canvas {
      border: 2px solid black;
      background: white;
      margin-top: 10px;
      touch-action: none;
    }
    #playerName {
      margin-top: 10px;
      font-weight: bold;
      font-size: 20px;
      text-align: center;
    }
  </style>
</head>
<body>

<div id="playerName"></div>
<canvas id="mazeCanvas" width="320" height="320"></canvas>

<script src="game.js"></script>

</body>
</html>
stdout
Standard output is empty