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.

~978 People Reached
Favorite Forums
Favorite Tags
c++ x 10
java x 6
c x 2
Member Avatar for wujianwei
Member Avatar for peter_budo
0
83
Member Avatar for wujianwei
Member Avatar for javaAddict
0
95
Member Avatar for wujianwei

the java teacher wants us to write a program project. he says we can do whatever we wanna do as long as it is not too easy and must be interesting. do u think it's hard to write a game program using java in graphic user interface (GUI)? By the …

Member Avatar for majestic0110
0
96
Member Avatar for wujianwei

here's the description: ============================================= You are asked to develop a C++ program that reads a text ¯le given by the user (e.g. test.txt), and output the frequency of the prepositions contained in the text ¯le on the screen. Your program shall provide a simple interface for the user to input …

Member Avatar for Ancient Dragon
0
118
Member Avatar for wujianwei

[code] class HugeInteger { public: HugeInteger(); void input(); int setNumber(char []); void output(); void convertToInteger(); void subtract(); private: char a[41]; char b[41]; int *array1; int *array2; int result[41]; }; #include<iostream> #include<cstring> #include<cstdlib> using namespace std; #include "HugeInteger.h" HugeInteger::HugeInteger() { input(); } void HugeInteger::input() { cout<<"Enter the 1st Integer: "; cin.getline(a,70,'\n'); …

Member Avatar for iamthwee
0
139
Member Avatar for wujianwei

[HTML]Is there a way(function) to distingusih between different data types?[/HTML] If u can, provide me with the function code, please?:)

Member Avatar for vijayan121
0
112
Member Avatar for wujianwei

[CODE]#ifndef HUGEINTEGER_H #define HUGEINTEGER_H class HugeInteger { public: HugeInteger(); void input(); int setNumber(char []); void output(); void convertToInteger(); void subtract(); bool isEqualTo(); bool isNotEqualTo(); bool isGreaterThan(); bool isLessThan(); bool isGreaterThanOrEqualTo(); bool isLessThanOrEqualTo(); bool isZero(); ~HugeInteger(); private: char a[41]; char b[41]; int *array1; int *array2; int result[41]; }; #endif [/CODE] [CODE]#include<iostream> …

Member Avatar for WaltP
0
106
Member Avatar for wujianwei

can anyone provide me with the subtraction bwtween two huge integers?:'( I totally don't have any idea of solving the problem>>. Please...

Member Avatar for ~s.o.s~
0
33
Member Avatar for wujianwei

I have been wondering the definition... I mean, [B]Are both 00123 and 12345 five-digit numbers?[/B]

Member Avatar for Aia
0
101
Member Avatar for wujianwei

if you type "123e1" in the command line, the system may read "123" and save the value. but how can we tell the computer that it's an wrong input?:-|

Member Avatar for WaltP
0
95