- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
like messing with computer
11 Posted Topics
My pc has two hard disk drives. The primary hard disk has become corrupted(or it has got some virus so that pc turns off abruptly). I have win 98 installed in the slave hard disk so i can run win 98 when i disconnect the primary HD. Is there a … | |
Re: You can set up a while loop which will iterate 5 times. Each time you will extract the last digit by: **d=n%10** ,now you can check whether it is 0 or odd or even and then divide the number by 10**(n=n/10)** which will remove the last digit so each time … | |
I want to access a remote VB application(located on server) on a client machine via HTML web page. Is it possible? Is there any other way? Actually initially they wanted an VB application to see punch details.Now they want to integrate it on local intranet so that user can launch … | |
i have been confused lately regarding where to concentrate... java or c++ or Algorithms & data structures or ........(there are still more languages) whenever i concentrate on java i tend to forget c++ or various algorithms or assembly( i have learned 8086/8088 programming). java is very large...core java......file io....swing..servlets....enterprise java...and … | |
when will the expression (std::cin>>buff) evaluate to false(0)? I have been trying to take input until empty string is entered(simply press enter) ? Is there any other way to achieve this? | |
Re: It appears that you are using variables x,v,z,etc before assigning valid values to them. You should compute num1,num2,etc only after the scanf(...) statement.. | |
Re: you just need to change your sumOfDigits(int) function: public static void sumOfDigits(int x) { int sum=0; while(x>0) { sum+=x%10; x/=10; } return sum; } | |
Re: the else clause at line 35 is redundant with that at line at 57 .try removing lines 35 to 38. | |
Re: although no very technical but i think myprog >myfile.doc would be more correct since the calculation is to be posted onto something like <MSWord file> | |
Does a thread gives up monitor lock when Thread.sleep() is called? | |
![]() | Re: add <code>#include<conio.h></code> at the begging and add <code>getch();</code> just before the main's closing brace |
The End.