No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
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?
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 != …
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?
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 …
[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
The End.
knotholaze