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
~322 People Reached
Favorite Forums
Favorite Tags
Member Avatar for mentallybroken

okay ill explain.this is a program that will convert binary. [CODE]import java.io.*; public class decbin{ public static DataStreamReader rustan=new DataStreamReader(System.in) public static void main (string[]args) throws IOException{ int Q,R,A; System.out.println("Enter a number to be convert: "); Q=Integer.parseInt(rustan.readLine()); while(Q!=0){ Q=A/2; R=A%2; A=Q; //one missing statement i think. i need help. } …

Member Avatar for javaAddict
0
77
Member Avatar for rwkopcke

I have just tried to use Dev-C++ v 4.9.9.2 IDE GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA When I compiled my first program I received a link error: [Linker error] undefined reference to `WinMain@16' …

Member Avatar for jbennet
0
138
Member Avatar for mentallybroken

i need a program that asks for one number and output like this: 1234 123 12 1 12 123 1234 [COLOR="Red"][B][U]NOTE:[/U][/B][/COLOR]: in the example above the input given is number 4. requirement doing this in using nest FOR loops. i started coding it bu i dont get the algorithm or …

Member Avatar for mentallybroken
0
107