Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 Ohhhhhhhh
thaaaaaaaaaaaaaaaaaaaaaaanks so much
realy thank you for your help |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 Oh
It's realy the first time using java
and I coulden't understand how to name the Main ?
do you mean the :
public static void main(String[] args)
{\\..} |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 when i rename the class
class CODE.java{
\\...}
appears 8_errors |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 when i rename the class
class CODE.java{
\\...}
appears 8_errors |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 How can i fix it ?????
can i fix this problem?? |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 thaaaaaaaanks for your help (all) ,
but i have strange error how can i solve it ??????
import java.util.Scanner ;
import java.math.BigDecimal;
class CODE {
public static void main(String[]... |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 Ok i understand what you say
thanks |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 Thanks first to answer me but
I want to write
if(n2==0)
{\\.......}
but I cannot do this in bigdecimal ??
Do you understand me?? |
Forum: Java Jun 19th, 2009 |
| Replies: 16 Views: 391 Hi :
I am beginner in using java , I tried to add bignumber using java
my program enter numbers and add them , stop when user enter 0 then show the summation.
import java.util.Scanner ; ... |
Forum: C++ Feb 26th, 2009 |
| Replies: 4 Views: 552 How to get information about big nums can you help me with searching...
thanks in advance ... |
Forum: C++ Feb 26th, 2009 |
| Replies: 4 Views: 552 I made program take number from user then display the factorial of this number >>>> The program works well but if I enter 20 it crashes. I need help how to accept big number in my program ?????? ... |
Forum: C++ Nov 27th, 2008 |
| Replies: 3 Views: 1,227 but i defined it ...
here
Stack ::~Stack()
{
delete[]SS;
}
do you that or something else ??? |
Forum: C++ Nov 27th, 2008 |
| Replies: 3 Views: 1,227 Hi all...
I tried to maked Stack with Dynamic Array but ........
class Stack
{
private:
int *SS;
int size;
int t;
void Expand();
public: |
Forum: C++ May 18th, 2008 |
| Replies: 4 Views: 648 -hi ,sorry for my way in explaning my problem.
-So I knew my default in my code ,
Its the second for loop
it should be for(i=0;i<4;i++),As i compare between A[i]&A[i+1],
-Another thing this is... |
Forum: C++ May 18th, 2008 |
| Replies: 4 Views: 648 Hi,
Can anyone help me in this code bubble sort in c++,,,
this is my code.......void main()
{
int A[5]={7,2,10,15,3};
int i,j,swap;
for(j=0;j<5;j++)
{
for(i=0;i<5;i++)
{ |
Forum: C++ May 3rd, 2008 |
| Replies: 4 Views: 695 i make it before but it doesn't work
input :100101
output:77
the true output must be :45
what should I do |
Forum: C++ May 3rd, 2008 |
| Replies: 4 Views: 695 This is my code to convert from binnary to octal ......what is the logic error in my code?
void main()
{
double base=2;
char bin[10000];
int res,sum=0;
cout<<"Enter the binnary number:";... |
Forum: C++ May 3rd, 2008 |
| Replies: 4 Views: 1,222 thanks to you so mush & I'll try
thanks for your help |
Forum: C++ May 3rd, 2008 |
| Replies: 4 Views: 1,222 |
Forum: C++ May 3rd, 2008 |
| Replies: 4 Views: 1,222 Can anyone help me to convert from binnary to octal or hexadecimal in c++?? |
Forum: C++ May 1st, 2008 |
| Replies: 3 Views: 415 Look my code here isn't complete.As output must be 32 if input is 26
The output in my code 23
I just wnt to inverse it
Do you understand me? |
Forum: C++ May 1st, 2008 |
| Replies: 3 Views: 415 my code convert from decimal to octal
here is but say input 26 ,output 23 i want output =32
what can i do?
void main()
{
int value;
cin>>value; //value=26
int rem=0; |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 4,134 first thankss for helping but it doesnot reverse the number
say iwant the output ,,, 23
you understand me |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 4,134 I know ,,the heder file of itoa is
#include<stdlil.h>.. correct or not?..
strrev() reverse the statment but iguess that itoa() don't make it? |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 4,134 Iwork with C++ not C#
Is there is addiference between these two langueges when Iwork at aprogram |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 4,134 |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 4,134 hey Iwant to convert from interger to character
char num[1000];
num[i]=rem;
strrev(num);
what is wrorng whith this form??
warning : warning C4996: 'strrev' was declared deprecated
I can't... |