Skip to content

Instantly share code, notes, and snippets.

import java.util.Scanner;
public class unlucky{
public static void main(String [] args)
{
Scanner input = new Scanner (System.in);
int params = input.nextInt();
int[] arr = new int[params];
for(int i = 0 ; i < arr.length ; i++){
import java.util.Scanner;
public class largest1{
public static void main (String[] args)
{
Scanner input = new Scanner (System.in);
int params = input.nextInt();
int params1 = input.nextInt();
import java.util.Scanner;
public class LeftShift {
public static void main(String [] args) {
Scanner input = new Scanner(System.in);
int a = input.nextInt();
int [] arr = new int [a];
import java.util.Scanner;
public class table {
public static void main (String [] args) {
Scanner input = new Scanner(System.in);
int params = input.nextInt();
import java.util.Scanner;
public class uppertolower {
public static void main (String [] args) {
Scanner input = new Scanner(System.in);
char start = input.next().charAt(0);
import java.util.Scanner;
public class numtomonth {
public static void main (String [] args) {
Scanner input = new Scanner(System.in);
int number = input.nextInt();
import java.util.Scanner;
public class asterisks {
public static void main (String [] args) {
Scanner input = new Scanner(System.in);
int params = input.nextInt();
square(params);
}
public static void square(int params){
import java.util.Scanner;
public class circlearea {
public static void main (String [] args) {
Scanner input = new Scanner(System.in);
int radius = input.nextInt();
import java.util.Scanner;
public class largest {
public static void main (String [] args) {
Scanner input = new Scanner(System.in);
int positions = input.nextInt();
int[] myArray = new int[positions];
import java.util.Scanner;
public class multipletrue {
public static void main (String [] args) {
Scanner input = new Scanner(System.in);
int a = input.nextInt();
int b = input.nextInt();