fork download
  1. /* package whatever; // do<!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.   <title>Note App</title>
  7.   <script src="https://u...content-available-to-author-only...g.com/react@17/umd/react.development.js"></script>
  8.   <script src="https://u...content-available-to-author-only...g.com/react-dom@17/umd/react-dom.development.js"></script>
  9.   <script src="https://u...content-available-to-author-only...g.com/babel-standalone@6.26.0/babel.min.js"></script>
  10.   <style>
  11.   body {
  12.   font-family: Arial, sans-serif;
  13.   max-width: 800px;
  14.   margin: 0 auto;
  15.   padding: 20px;
  16.   background-color: #f5f5f5;
  17.   }
  18.   .note-container {
  19.   display: grid;
  20.   gap: 20px;
  21.   margin-top: 20px;
  22.   }
  23.   .note {
  24.   background: white;
  25.   padding: 15px;
  26.   border-radius: 8px;
  27.   box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  28.   }
  29.   .note-form {
  30.   display: flex;
  31.   flex-direction: column;
  32.   gap: 10px;
  33.   margin-bottom: 20px;
  34.   }
  35.   .note-form textarea {
  36.   padding: 10px;
  37.   border: 1px solid #ddd;
  38.   border-radius: 4px;
  39.   min-height: 100px;
  40.   }
  41.   button {
  42.   padding: 8px 16px;
  43.   background-color: #4CAF50;
  44.   color: white;
  45.   border: none;
  46.   border-radius: 4px;
  47.   cursor: pointer;
  48.   }
  49.   button:hover {
  50.   background-color: #45a049;
  51.   }
  52.   .note-actions {
  53.   display: flex;
  54.   gap: 10px;
  55.   margin-top: 10px;
  56.   }
  57.   .delete-btn {
  58.   background-color: #f44336;
  59.   }
  60.   .delete-btn:hover {
  61.   background-color: #da190b;
  62.   }
  63.   </style>
  64. </head>
  65. <body>
  66.   <div id="root"></div>
  67.   <script type="text/babel" src="app.js"></script>
  68. </body>
  69. </html>n't place package name! */
  70.  
  71. import java.util.*;
  72. import java.lang.*;
  73. import java.io.*;
  74.  
  75. /* Name of the class has to be "Main" only if the class is public. */
  76. class Ideone
  77. {
  78. public static void main (String[] args) throws java.lang.Exception
  79. {
  80. // your code goes here
  81. }
  82. }
Success #stdin #stdout 0.1s 52548KB
stdin
Standard input is empty
stdout
Standard output is empty