Using default Bootstrap 3.0, here's a short CSS snippet to style your login form.
A Pen by Lawal Abdulateef Olawale on CodePen.
import java.util.Scanner; | |
public class Reverse{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
// System.out.println("Enter the size of the array"); | |
int n = input.nextInt(); | |
int[] arr = new int[n]; | |
// System.out.println("Enter array values"); | |
for(int i=0; i<n; i++){ |
import java.util.Scanner; | |
public class Day6{ | |
public static void main(String[] args){ | |
Scanner input = new Scanner(System.in); | |
int n = input.nextInt(); | |
input.nextLine(); | |
String[] words = new String[n]; |
//Day8 | |
import java.util.*; | |
import java.io.*; | |
class Solution{ | |
public static void main(String []argh) | |
{ | |
Map<String,Long> phonebook = new java.util.HashMap<>(); | |
Scanner in = new Scanner(System.in); | |
int n = in.nextInt(); |
import java.io.*; | |
import java.util.*; | |
import java.text.*; | |
import java.math.*; | |
import java.util.regex.*; | |
public class Solution { | |
public static int factorial(int n)//factorial method | |
{ | |
if (n == 0) |
import java.util.Scanner; | |
public class Binary | |
{ | |
public static String convertToBinary(int decnumber) | |
{ | |
String binaryString = " "; | |
if (decnumber > 0) | |
{ | |
binaryString = Integer.toBinaryString(decnumber); |
import java.io.*; | |
import java.util.*; | |
import java.text.*; | |
import java.math.*; | |
import java.util.regex.*; | |
public class Solution | |
{ | |
public static void main(String[] args) |
public static void WordCount(string word, string path) | |
{ | |
int index; | |
int occurrence = 0; | |
try | |
{ | |
StreamReader reader = new StreamReader(path); | |
using(reader) |
Using default Bootstrap 3.0, here's a short CSS snippet to style your login form.
A Pen by Lawal Abdulateef Olawale on CodePen.
import java.util.Scanner; | |
import jdk.nashorn.internal.parser.TokenType; | |
public class ConditionStatement { | |
public static void main(String [] args){ | |
/// scanner to read input name and number | |
///though name not neccessary | |
///happy coding..... | |
Scanner input = new Scanner(System.in); | |
System.out.println("Enter your Name"); | |
String name = input.next(); |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
class Solution { | |
static void Main(String[] args) { | |
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution */ | |
// Console.WriteLine("Enter the Nmber of Test Case"); | |
int Size = int.Parse(Console.ReadLine()); | |
int[] input = new int[Size]; | |
int i; |