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

[code]#include <iostream.h> int main(void){ char a; char b; cim >> b; b=b-'a'+'A'; cout << b; return 0; } [/code] I am like about 2 weeks into programming, so I am pretty simplistic in my programs. If you put that into like a Borland Compiler (not sure if other compilers use …

Member Avatar for Narue
0
107
Member Avatar for frozenflame2

[code]#include <iostream.h> int main(void){ int a; int b; int c; cin >> a; cin >> b; c = a+b; cout << c; return 0; } [/code] I am trying to create an "addition machine". As of now, after I run the program, I can input a number and then another …

Member Avatar for GreenDay2001
0
92