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
~581 People Reached

5 Posted Topics

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
89
Member Avatar for akasekaihime

Keep the code most simple as u can. In ur code u made several logical error. Try this code below. [CODE]import java.io.*; import java.util.Scanner; public class info { public static void main(String[] args) { //BufferedReader br= new BufferedReader (new InputStreamReader(System.in)); Scanner br=new Scanner(System.in); String name,course,ide,section; int id,ctr,answer=0; while (answer != …

Member Avatar for stultuske
0
106
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
127
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
109
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
150

The End.