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
~980 People Reached
Favorite Forums
Favorite Tags
c++ x 7
c# x 1

7 Posted Topics

Member Avatar for k59smooth

On This web site is frist time i heard of C#. I am skilled in C++ and was wanting to know if C# is an advanced version of C++, kind of like C++ is an advanced version of C...

Member Avatar for jbennet
0
162
Member Avatar for k59smooth

I have been trying to get my program to ask the user if the want to run the program again before exiting. I have been using he following while loop. It isn't working, any suggestions. char again; again = 'Y'; while (again == 'Y','y') { // // program // cout …

Member Avatar for dr.eu
0
95
Member Avatar for k59smooth

I was trying to do the practice problems but don't understand what the first beginner or first intermediate problem is asking me to do Write a program which finds the factorial of a number entered by the user. (check for all conditions) (Beginner). Create a simple Palindrome checker program. The …

Member Avatar for StuXYZ
0
149
Member Avatar for k59smooth

I'm trying to input these letters into and array using the following an tex char Letters[26] = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}; my complier has an error reading too …

Member Avatar for Nick Evan
0
84
Member Avatar for k59smooth

I'm trying to input these letters into and array using the following an tex [TEX]char Letters[26] ={"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}; [/TEX] my complier has an error reading too …

Member Avatar for Nick Evan
0
287
Member Avatar for k59smooth

I new to a C++, I downloaded the Microsoft Visual C++ compiler. I copy/pasted a simple program. [code=cplusplus] #include <iostream.h> #include <stdlib.h> int main() { cout << "This is my first C++ program." << endl << endl; system("PAUSE"); return EXIT_SUCCESS; } [/code] The compiler has an error that reads Cannot …

Member Avatar for Ancient Dragon
0
87
Member Avatar for k59smooth

The End.