This file contains 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
/* | |
The MIT License (MIT) | |
Copyright (c) 2014 Tanay PrabhuDesai | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This file contains 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
"Oranges and Lemons" say the Bells of St. Clements | |
"Bullseyes and Targets" say the Bells of St. Margaret's | |
"Brickbats and Tiles" say the Bells of St. Giles | |
"Halfpence and Farthings" say the Bells of St. Martin's | |
"Pancakes and Fritters" say the Bells of St. Peter's | |
"Two Sticks and an Apple" say the Bells of Whitechapel | |
"Maids in white aprons" say the Bells at St. Katherine's | |
"Pokers and Tongs" say the Bells of St. John's | |
"Kettles and Pans" say the Bells of St. Anne's | |
"Old Father Baldpate" say the slow Bells of Aldgate |
This file contains 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
#include<stdio.h> | |
#include<conio.h> | |
#include<math.h> | |
void main() | |
{ | |
int a[100],**b,i,j,r,c,n,temp,k=0,sum,avg[10],l,h; | |
clrscr(); | |
printf("How many data? "); | |
scanf("%d",&n); |
This file contains 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 calculator; | |
import java.awt.*; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.*; | |
public class Calculator extends JFrame implements ActionListener { | |
JFrame f; |
This file contains 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
using System; | |
using System.Linq; | |
namespace DC4 | |
{ | |
class Program | |
{ | |
class fano | |
{ | |
public float pro; |
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace DC5 | |
{ | |
class Huff | |
{ | |
public int frequency; | |
public string data; |