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
~939 People Reached
About Me

Trying to learn C++... Completed C....Rading Head First Java

PC Specs
Win XP (SP2). 1GB RAM
Favorite Forums
Favorite Tags
Member Avatar for adityawkhare

Ok so i made a game in which a random no. is generated and user have to guess it. The game givesclues like Higher or Lower to user. When a guessed no is found a new jframe opens in a new class gui.class. Now i want to pass the argumets …

Member Avatar for NormR1
0
188
Member Avatar for adityawkhare

I have developed a calculator gui using netbeans. I've a decimal button which i want to be pressed only once. Is there anything like single selection for jButton?

Member Avatar for JamesCherrill
0
62
Member Avatar for adityawkhare

Can anybody here tell me please how to display a notification/message box in c++. suppose i'm making a program for factorial of a no. and i want to display the result in a message box with msg..." Factorial of No. is <fact>". help me please!!!

Member Avatar for Ancient Dragon
0
540
Member Avatar for adityawkhare

[CODE]// DETERMINANTS by a.w.k [COLOR="red"]#include<conio.h> #include<iostream.h> #include<stdlib.h>[/COLOR] int main() { int ex,choice,a,b,c,d,e,f,g,h,i,ans; char repeat; clrscr(); do{ cout<<"\n Determinant Solver [with Explaination]"; cout<<"\n Enter your choice..."; cout<<"\n\n Press [1] for 2x2....\n \n Press [2] for 3x3...."; cin>>choice; clrscr(); if(choice==1) { cout<<"\n Enter 4 values of Determinant...."; cin>>a>>b>>c>>d; clrscr(); ans=(a*d-b*c); cout<<"\n Entered …

Member Avatar for PrimePackster
0
149