This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package tutorials.Next; | |
| import java.io.*; | |
| import java.util.*; | |
| /** | |
| * Created by Dheshan M (@D-codex) on 10/12/2015. | |
| */ | |
| public class StringTokens { | |
| public static void main(String Args[]){ | |
| int n=0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Afghanistan Kabul | |
| Albania Tirana | |
| Algeria Algiers | |
| Andorra Andorra-la-Vella | |
| Angola Luanda | |
| Antigua-and-Barbuda Saint-John's | |
| Argentina Buenos-Aires | |
| Armenia Yerevan | |
| Australia Canberra | |
| Austria Vienna |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package tutorials.Next; | |
| import java.io.*; | |
| import java.util.*; | |
| /** | |
| * Created by Dheshan M (@D-codex) on 10/14/2015. | |
| */ | |
| public class EncryptionBasic { | |
| public static char Encryptor(char c) { | |
| long value = (long) c; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package Practice; | |
| import javafx.application.Application; | |
| import javafx.event.ActionEvent; | |
| import javafx.geometry.Pos; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.control.TextField; | |
| import javafx.scene.layout.GridPane; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package dheshan.isc11; | |
| import java.io.*; | |
| import java.util.Scanner; | |
| import java.util.StringTokenizer; | |
| /** | |
| * Created by Dheshan M (@D-codex) on 11/20/2015. | |
| */ | |
| public class stringReplace { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package tutorials.Next; | |
| import java.util.Scanner; | |
| /** | |
| * Created by Dheshan M (@D-codex) on 10/26/2015. | |
| */ | |
| public class AscendingNumbers { | |
| public static void main(String Args[]) { | |
| int i,j; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package tutorials.Next; | |
| import java.util.Scanner; | |
| /** | |
| * Created by Dheshan M (@D-codex) on 10/26/2015. | |
| */ | |
| public class AscendingOrder { | |
| public static void main(String Args[]) { | |
| int i,j; | |
| int temp; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package tutorials.Next; | |
| import java.io.*; | |
| import java.util.*; | |
| /** | |
| * Created by Dheshan M (@D-codex) on 10/12/2015(Nov 22). | |
| */ | |
| public class CountryCapital { | |
| public static void AppendData()throws IOException{ | |
| Scanner inth=new Scanner(System.in); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Afghanistan Kabul | |
| Albania Tirana | |
| Algeria Algiers | |
| Andorra Andorra-la-Vella | |
| Angola Luanda | |
| Antigua-and-Barbuda Saint-John's | |
| Argentina Buenos-Aires | |
| Armenia Yerevan | |
| Australia Canberra | |
| Austria Vienna |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package dheshan.isc11; | |
| import java.io.BufferedWriter; | |
| import java.io.FileWriter; | |
| import java.io.IOException; | |
| import java.io.PrintWriter; | |
| import java.util.Scanner; | |
| /** | |
| * Created by Dheshan M (@D-codex) on 10/14/2015. |