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

Hey guys, I am trying to self teach C++ and I am to the point of loops. Now I was working on how to create a triangle with manipulating nested loops to create a triangle with numbers. Here is the code I have ended up with: [CODE]/* Print a number …

Member Avatar for usman.rose
0
307
Member Avatar for chubbs1900

[CODE]/* This program reads a test score, calculates the letter grade for the score, and prints the grade. */ #include <iostream> using namespace std; char studentScore (int score); int main () { cout << "Enter the test score (0-100): "; int score; cin >> score; char grade = studentScore (grade); …

Member Avatar for Computer Love
0
1K
Member Avatar for chubbs1900

Alright, in this situation I want to take a program that I wrote and modify it so it can take an integers and if any of the numbers are negative, it returns a negative number, but if all the numbers are positive, it returns their average. This is the program …

Member Avatar for WaltP
0
104
Member Avatar for chubbs1900

Hey guys, I am trying to create a number triangle that looks like this. 123456789 12345678 1234567 123456 12345 1234 123 12 1 This is where I'm at: [CODE]#include <iostream> using namespace std; int main () { int limit; // Read limit cout << "Please enter a number between 1 …

Member Avatar for vmanes
0
81