Recent content by sherry_ellis88

  1. S

    making a quiz in C++?

    I need 5 T or F questions with the option to input the answer and then add the correction to answer if right or wrong. i just need random questions! this is what i have so far #include <iostream> #include <conio.h> using namespace std; int main() { int True; int False; { if (userresponse ==...
  2. S

    Cannot finish this code on C++?

    THIS IS THE QUESTION: Write an application that shows the sum of 1 to n for every n from 1 to 50. This is the program prints 1 (the sum of one alone), 3 (the sum of 1 and 2), 6 (the sum of 1, 2, and 3), 10 (the sum of 1,2,3 and 4) and so on and so on. THIS IS WHAT I HAVE DONE SO FAR: # include...
Back
Top