Search:

Type: Posts; User: grade10

Search: Search took 0.01 seconds.

  1. Thread: Mastermind

    by grade10
    Replies
    2
    Views
    2,122

    Mastermind

    i am having a spot of trouble making this program, and i would like as much as possible, i have consulted many, including my teacher and all of my fellow students. THe job is to make a program to...
  2. Thread: Chicken sound

    by grade10
    Replies
    1
    Views
    1,380

    Chicken sound

    THis program originally submitted by doubleanti does not work with Microsoft Visual C++,

    #include <dos.h>

    int main(void)
    {
    sound(7);
    delay(10000);
    nosound();
    return 0;
  3. Thread: Ascii

    by grade10
    Replies
    2
    Views
    1,478

    Ascii

    How do i output ascii art such as pictures and such from Chris.com
    i have pasted them into the c++ code file with cout<<"asciiartgoeshere"<endl; but when i compile it the formatting is off adn it is...
  4. Replies
    9
    Views
    986

    Hello

    Stop using people to do your homework do it yourself this forum is not intended for people to do everything for you, but only for people to give tips.
  5. Thread: Loops

    by grade10
    Replies
    4
    Views
    1,014

    correction

    i forgot to type in the closing brace "}" but when i try to compile it the error message is on the cout line that<< operator is ambiguous i am using Microsoft Visual Studio 6.0 and my teacher doesn't...
  6. Thread: Loops

    by grade10
    Replies
    4
    Views
    1,014

    Loops

    #include "stdafx.h"
    #include <iostream.h>

    int main(int argc, char* argv[])
    {
    // declare j as an integer
    __int64 j;

    // print the value of j incrementing by one until j exceeds 3
    for (j...
  7. Thread: polymorphism

    by grade10
    Replies
    10
    Views
    2,109

    Polymorphism

    Try this website i found it very interesting
    http://zeus.eed.usv.ro/misc/doc/prog/c/msvc12/vcl22.htm
  8. Thread: If statements

    by grade10
    Replies
    2
    Views
    1,040

    If statements

    Hi, i am new to c++ and i am writing a program to calculate the number of buses, for a group of people so each bus can contain 50 people and the reamining people have to go in vans each can contain...
Results 1 to 8 of 8