Removed the Misc directory and moved the files to other

This commit is contained in:
Varun Upadhyay
2017-11-05 10:17:19 -08:00
parent c8038cd6f0
commit eed6f33976
4 changed files with 6 additions and 51 deletions

View File

@ -1,6 +1,7 @@
import java.util.Scanner;
public class FloydTriangle {
class FloydTriangle {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of rows which you want in your Floyd Triangle: ");

View File

@ -1,4 +1,8 @@
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {