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
~94 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for Shinbuki

i've been working on a program that extends the limit of an integer using arrays here is my code so far [ICODE]#include<iostream> #include<string> using namespace std; void sub(); void add(); void mult(); int main() { int operation; cout<<"Please Enter a number"<<endl<<"1.Addition"<<endl<<"2.Subtraction"<<endl<<"3.Multiplication"<<endl<<endl; cin>>operation; if(operation == 1) { add(); } if(operation == …

Member Avatar for Agni
0
94