petrol or CNG
By classact
@classact (1394)
India
27 responses
@smbilalshah (1316)
• Pakistan
26 Dec 06
yep here in Pakistan too lots of ppl have converted to CNG coz its cheaper & environmentally safer too
@hiteshnihalani (2121)
• India
28 Dec 06
your discussion is great...in your discussion you have taken a good issue..
petrol
@dhoom_akash (428)
• United States
29 Dec 06
CNG is better i think
you have created a cool discussion..
in your discussion you have taken a good issue..
@kabir_helboy (301)
• India
13 Jan 07
i think CNG is better from petrol because it is more nature friendly in comparision to petrol
@puri_puneet2003 (1220)
• India
26 Dec 06
petrol............. its better than CNG.......... i think tht....... dont kno well wat is better............
java prog. u wanted........
class number
{
int num1;
int num2;
number(int a,int b)
{
num1=a;
num2=b;
}
int sum()
{
return num1+num2;
}
int difference()
{
return num1-num2;
}
}
class numberdemo
{
public static void main(String args[])
{
number n1=new number(30,20);
number n2=new number(10,5);
System.out.println(n1.difference());
System.out.println(n2.sum());
}
}