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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> <!-- Defines what type of content is gonna go into this HTML page--> | |
<meta http-eqiv="Conent-Type" context=text/html; charset = IOS-8859-1"/> | |
<style type="text/css"> | |
h1{color:red} | |
</style> | |
<link rel="stylesheet" type="text/css" href="styles.css"/> | |
<meta name = "description" content="Welcome to Bobs hardware!"/> |
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 notepad; | |
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
import java.util.Scanner; | |
import java.io.*; | |
public class Notepad extends JFrame implements ActionListener { | |
private TextArea textArea = new TextArea("", 0,0, TextArea.SCROLLBARS_VERTICAL_ONLY); |
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
/* | |
Problem : NEWCH,Codechef's October Challenge 2012 | |
Author : Abhinav Shrivastava | |
Compiler : Codeblocks 10.05 | |
Concept : Solution to Recurrence relation using Matrix Exponentiation | |
*/ | |
#include <iostream> | |
#include<cstdio> | |
#include<algorithm> | |
#include<cmath> |
NewerOlder