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 map; | |
import java.awt.Graphics; | |
import java.awt.Image; | |
import java.io.FileOutputStream; | |
import java.io.InputStream; | |
import java.io.OutputStream; | |
import java.net.HttpURLConnection; | |
import java.net.URL; |
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
var flag; | |
var w3c=(document.getElementById)?true:false; | |
var ns4=(document.layers)?true:false; | |
var ie4=(document.all && !w3c)?true:false; | |
var ie5=(document.all && w3c)?true:false; | |
var id; | |
var dtag,ctag,cimg,count,count1,seconds; | |
var cntr,doc,sh,tim; | |
var images=new Array(); | |
for(a=2;a<5;a++){ |
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
body | |
{ | |
background-color:Black; | |
position:fixed; | |
} | |
#can | |
{ | |
position:relative; | |
background-image:url('des.jpg'); | |
width:1350px; |
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
//<applet code="MyMouse.class" width=600 height=600></applet> | |
import java.awt.event.*; | |
import java.awt.geom.*; | |
import java.awt.*; | |
import javax.swing.*; | |
import java.util.*; | |
import java.applet.*; | |
class Table//this is the table class that is used to find the shortest path using Dijsktra algo | |
{ | |
ArrayList<Integer> r = new ArrayList<Integer>(); |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
function load() | |
{ | |
var aud= new Audio('clown.mp3'); | |
aud.play(); | |
} | |
function sound() |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
function timer(){ | |
var date = new Date(); | |
var h, m; | |
var s; | |
var t = " "; | |
h = date.getHours(); | |
m = date.getMinutes(); |
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> | |
struct process | |
{ | |
int pid,bt,at,priority,wt,tat,et,st,rt,rem; | |
int finished,count; | |
}p[100],fin[100]; | |
void calc(int n) | |
{ | |
int flag=0; |
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<string.h> | |
int number=0; | |
struct table | |
{ | |
char data[100]; | |
char val[20]; | |
}t[10]; | |
int main() |
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
#define EQ == | |
#define PI 3.14 | |
#include<stdio.h> | |
#include<conio.h> | |
int main() | |
{ | |
int i; | |
while(i EQ 0) | |
a=6; | |
a + PI; |
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 com.sigtuple.aadi.autoscan.blood; | |
import android.app.Activity; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.graphics.Bitmap; | |
import android.os.AsyncTask; | |
import android.os.Handler; | |
import android.widget.Toast; |
OlderNewer