Epidemiology of glaucoma!

 

Galucoma is the pathological condition of the eye which involves the damage of optic nerve, ultimately resulting in blindness, sources of major disabilities across the world.  Blindness resulting from glaucoma is highest among African Americans, which reflects the disparity and inequalities across the races.

151222_008

 

Here I am using Java Programming to demonstrate the shorter half life of acetazolamide compared to other carbonic anhydrase inhibitors. These are DOC(drug of choice) medication for glaucoma!

ss7 ss8

Pilocarpine (parasymapthomimetic), another drug used in glaucome but with precaution, genrally one or two drops .. I used ‘do while’ java programing to demonstrate it. PilocarpineSS

package Acetazolamide;

public class CarAnhInh {
/* Acetazolamide is carbonic anhydrase inhibitor
*
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(“AntiGlucomaDrugs”);

int Usa= 50;
int India=1;
int result = Usa-India;
System.out.println(“differenceInPrices ” + result);
}
package Acetazolamide;

public class HalfLife {

public static void main(String[] args) {
// TODO Auto-generated method stub
int B = 3000 ;
int A= 3;

if (B < A){
System.out.println(“perhaps drug is wrong”);
}

if (B == A){
System.out.println(“acetazolamide is of long duration which is not possible”);

}
if (B > A){
System.out.println(” Corret Brenzolamide has long halflife than Acetazolamide”);

}
}

}

package Acetazolamide;

public class pilocarpine {

public static void main(String[] args) {
int d= 4;

do {
System.out.println (“d=”+ d);
d–;
}while (d > 0);

}

}

package Acetazolamide;

public class piloAndAceta {

public static void main(String[] args) {
int p, a;
p=76;
a=120;
if (p >50 && a >50){
System.out.println(“half life is good”);
}else if ( p >50 || a > 50){
System.out.println(“atleast one of drugs has good half life”);
}else{
System.out.println(“none of drugs have good half life”);
}

}
}

package Acetazolamide;

public class AllGalucoDrugs {

public static void main(String[] args) {
String j = “Aceta” ;
switch (j){

case “Alphaand”:
System.out.println(“notdoc”);
break;
case “Aceta”:
System.out.println(“doc”);
break;
case “ProgAnal”:
System.out.println(“litonoprost”);
break;
case “Piloc”:
System.out.println(“Sjogren”);
break;
default:
System.out.println(“surgery”);
break;

}
}

}