User profile: LendraDwi

User info
User name:LendraDwi
Name:Lendra Dwi
Location:Somewhere in the earth
History
Joined:
Number of posts:311
Latest posts:

help problem with my code
Check the userInput's datatype, its double not char or string And use single quote if u are using ch...

String Conversion Algorithm
Substrct that character number with '0' or 48, for an example '2'-'0' and you'll get 2 in int since ...

Question about for loop.
Num=1 sum=0+1; num=2 sum=1+2; num=3 sum=3+3; num=4 sum=6+4; num=5 sum=10+5; num=6 sum=15+6; num=7 su...

I have a finished working program. Question on final part please
Just add [code]continue;[/code] inside [code]if(CoolingOff1>CollingOff2)[/code] this "if" is belong ...

I have a finished working program. Question on final part please
Try thiis [code]while(true){ //some code if(/*you want to startover*/) continue; //another cod...