Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
19% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
4
Posts with Downvotes
2
Downvoting Members
4
1 Commented Post
0 Endorsements
~1K People Reached
Favorite Tags
c++ x 15
c x 1
Member Avatar for alexa868

Hey guys, I'm trying to write a gradebook program in C but I can't get to validate the grades... help please! [CODE]float notas[5]; int x=0; char opcion1; for(x=0; x<5;x++){ do { printf("Ingrese nota %d: ", x+1); scanf("%f", &notas[x]); } while (notas[x]>100 && notas[x]<0);}[/CODE] The user must enter 5 grades. If …

Member Avatar for WaltP
0
94
Member Avatar for alexa868

Hey everyone, so I'm new in object oriented programming so I'm not sure about how to write this program. I need to create a die game with the class: DIE, that rolls the die. it needs to have a method called: "roll" that rolls the dice again and it needs …

Member Avatar for jonsca
0
127
Member Avatar for alexa868

hey guys! so I need to create a matrix 6x6 and then fill it with random numbers from 0 to 3.... and I need to leave the diagonal of the matrix with 0s... The rows are supposed to be soccer teams so if row 1 wins row 2... the program …

Member Avatar for alexa868
0
93
Member Avatar for alexa868

Hey guys, so I want to write a program that calculates the sinus, cosinus and tangent without using math library... Any ideas?

Member Avatar for mrnutty
0
344
Member Avatar for alexa868

hey guys, I'm doing a paper about hacking and security... but I need more bibliography!... do you know any good books about those topics?? Please help! I can't use the Internet... only books thanks!

Member Avatar for alexa868
0
110
Member Avatar for alexa868

hey guys, I want to write a program to transform numbers to letters if I write 652 I want the program to print six hundred fifty two I have written this but I have a problem. For the 652... I get six hundred 5 2. The numbers are in spanish …

Member Avatar for alexa868
0
102
Member Avatar for alexa868

Hey guys... I want to write a program that transforms numbers into letters and letters into numbers... for example 20 would be transformed into twenty I have this but I don't know what's missing or what's the problem... help please [CODE]#include <iostream> #include <string> using namespace std; using std::string; void …

Member Avatar for rati
0
144
Member Avatar for alexa868

Hey... I've written a program that changes a single character from uppercase to lowercase and viceversa but I want to change a whole word from uppercase to lowercase and viceversa how do I do that? [CODE]#include <cctype> #include <iostream> using namespace std; int main() { for (int i=1;i<=10;i++){ char ch; …

Member Avatar for VernonDozier
0
185
Member Avatar for alexa868

I need a topic for an argumentative essay... I want to do it about either technology or programming please help!

Member Avatar for richman0829
-2
50
Member Avatar for alexa868

A criticism of the break and continue statements is that each is unstructured. Actually they statements can always be replaced by structured statements, although doing so can be awkward. Describe in general how you would remove any break statement from a loop in a program and replace it with some …

Member Avatar for BeyondTheEye
0
90