URL Shortener Gratis
some good ones:
https://cutt.ly/
https://free-url-shortener.rb.gy/
https://www.shorturl.at/
GutoTrosla
some good ones:
https://cutt.ly/
https://free-url-shortener.rb.gy/
https://www.shorturl.at/
package com.test;
import java.util.Scanner;
public class Main {
public Main() {
}
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter your Name");
String Alphabet = input.next();
System.out.println("your name is" + Alphabet);
Scanner input1 = new Scanner(System.in);
System.out.println("Enter a Mobile Number :");
long number = input1.nextLong();
System.out.println("Your Mobile will be:" + number);
Scanner input2 = new Scanner(System.in);
System.out.println("Enter your Email");
String Alphabet1 = input2.next();
System.out.println("TQ for your Mail Address");
Scanner input3 = new Scanner(System.in);
System.out.println("Enter your Password");
String Alphabet2 = input3.next();
System.out.println("Your Details will be Hacked. Good Bye................");
}
}