This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
public class TetrisGame extends JFrame { | |
private static final int BOARD_WIDTH = 10; | |
private static final int BOARD_HEIGHT = 20; | |
private static final int BLOCK_SIZE = 30; | |
private Tetromino currentTetromino; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
public class BreakoutGame extends JFrame { | |
private static final int WIDTH = 480; | |
private static final int HEIGHT = 320; | |
private Ball ball; | |
private Paddle paddle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
public class SudokuGame extends JFrame { | |
private static final int GRID_SIZE = 9; | |
private static final int CELL_SIZE = 60; | |
private static final int BOARD_SIZE = GRID_SIZE * CELL_SIZE; | |
private static final int[][] BOARD = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
import javax.imageio.ImageIO; | |
import java.util.Timer; | |
import java.awt.*; | |
import java.awt.event.*; | |
import java.awt.image.*; | |
import java.io.*; | |
import javax.swing.*; | |
public class Main extends JFrame { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Matrix { | |
private int[][] data; | |
private int rows; | |
private int cols; | |
public Matrix(int rows, int cols) { | |
this.rows = rows; | |
this.cols = cols; | |
this.data = new int[rows][cols]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class hangman { | |
private static final String[] WORDS = {"apple", "banana", "orange", "pear", "kiwi", "grape"}; | |
private static final int MAX_TRIES = 6; | |
public static void main(String[] args) { | |
Scanner scanner = new Scanner(System.in); | |
String word = WORDS[(int) (Math.random() * WORDS.length)]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class Hangman { | |
private static String[] words = {"terminator", "banana", "computer", "cow", "rain", "water" }; | |
private static String word = words[(int) (Math.random() * words.length)]; | |
private static String asterisk = new String(new char[word.length()]).replace("\0", "*"); | |
private static int count = 0; | |
public static void main(String[] args) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class trivia { | |
public static void main(String[] args) { | |
Scanner scanner = new Scanner(System.in); | |
String[][] questions = { | |
{"What is the capital of France?", "Paris"}, | |
{"What is the largest country in the world?", "Russia"}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A simple program to demonstrate | |
// Tic-Tac-Toe Game. | |
import java.util.*; | |
public class Main { | |
static String[] board; | |
static String turn; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
color 0a | |
mode 100,50 | |
title Matrix | |
:matrix_loop | |
cls | |
setlocal enabledelayedexpansion | |
set /a "count=0" | |
for /l %%a in (1,1,50) do ( |