Skip to content

Instantly share code, notes, and snippets.

View LisGein's full-sized avatar

Noa Alice LisGein

  • Munich, Germany
View GitHub Profile
@LisGein
LisGein / task 4
Last active August 29, 2015 14:04
import java.util.Arrays;
import java.util.Random;
public class task4
{
public static void main(String[] args)
{
long start = System.currentTimeMillis();
Random random = new Random();
int[] arr = new int[1000];
@LisGein
LisGein / task 2
Last active August 29, 2015 14:04
import javax.swing.*;
import java.util.Arrays;
import java.util.Scanner;
public class task2
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
String input = JOptionPane.showInputDialog("введите число n");
@LisGein
LisGein / Task 1
Last active August 29, 2015 14:04
import javax.swing.*;
import java.util.Arrays;
public class task
{
public static void main(String[] args)
{
String input = JOptionPane.showInputDialog("введите число n");
int n = Integer.parseInt(input);
int[] arr = new int[n];
public class FuzzyWuzzy
{
public static void main(String[] args)
{
int x;
for (x = 1; x <= 100; x++)
{
if (x % 3 == 0)
System.out.print("Fuzzy");
if (x % 5 == 0)