Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~553 People Reached
Favorite Tags
Member Avatar for knotholaze

Anyone can tell me how to run PHP code in android apps? I mean I need to write some php code which succesfully run on the emalutor. Can anyone help me?

Member Avatar for Mocabilly
0
88
Member Avatar for akasekaihime

can you help me correct my java code......I do not know what is wrong with it... [CODE]import java.io.*; public class info { public static void main (String args[])throws IOException { BufferedReader br= new BufferedReader (new InputStreamReader(System.in)); String name,course; char section; int id,ctr=0,answer=0; do for(ctr=0;ctr>=3;ctr++) { System.out.print("\n Enter Name: "); name=br.readLine(); …

Member Avatar for stultuske
0
96
Member Avatar for knotholaze

double i,j,k; k=(i%j); The program generates a error in second line and compiler show a message I can not use % in double variable. But I need to separate the each digit of a double variable how I can do this?

Member Avatar for vijayan121
0
120
Member Avatar for knotholaze

I'm trying to display number on screen wihout using the exponential form (1x10e-7 etc) Unfortunatly as it converts the number to a string it converts the exponential format with it Code: double j; //as Long string s; //as String j=0.00000000001 ostringstream ss; ss<<j; s=ss.str(); cout<<s; The programme will display 10e-10 …

Member Avatar for knotholaze
0
102
Member Avatar for knotholaze

[CODE]double i; i=pow(10,10); cout<<i;[/CODE] for this code i get in output 1e+10 but how i can get output 10000000000 using cout<< and double variable

Member Avatar for knotholaze
0
147