Skip to content

Instantly share code, notes, and snippets.

@elizabet92
elizabet92 / Main.Java
Created October 31, 2015 20:08
Problem 3 - Depedencies Resolving
/*
!!!!!
For resolving the problem, I am using org.json files. They can be downloaded from: http://www.json.org/java/index.html
!!!!!
*/
package Main;
import org.json.*;
import java.io.File;
import java.io.FileNotFoundException;
@elizabet92
elizabet92 / Problem2.cpp
Created October 31, 2015 20:02
Problem2 - Word Game
#include <iostream>
using namespace std;
int main()
{
int i, j, k, n, m, word_len=0, br=0;
char arr1[100];
char arr2[100][100];
cout<<"Enter a word"<<endl;
cin>>arr1;
cout<<"Enter number of rows: "<<endl;
@elizabet92
elizabet92 / Problem1.cpp
Created October 31, 2015 18:42
Problem1 - Points
#include<iostream>
using namespace std;
int main()
{
int x, y, flag = 1;
char array[1000];
cout<<"Enter X-coordinate:";
cin>>x;
cout<<"Enter Y-coordinate:";
cin>>y;