Search:

Type: Posts; User: joseph0829

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,188

    are you using borland c++?

    are you using borland c++?
  2. Replies
    7
    Views
    11,508

    if you want a clean display again add...

    if you want a clean display again add system("cls"); after system("pause");
  3. Thread: c++ book

    by joseph0829
    Replies
    21
    Views
    2,791

    try C++ how to program 5th edition dietel and...

    try C++ how to program 5th edition dietel and dietel....
  4. Replies
    3
    Views
    849

    getch() this is a function that would not...

    getch() this is a function that would not terminate your program unless you press something on your keyboard....
    if you'd like to use an automatic inputs i would suggest using getch(), for example:...
  5. Replies
    6
    Views
    1,458

    Parsing and Matching....

    I some problem to solve this is our 2nd mid-term quiz in my c++ class.

    this is my current code:



    #include<iostream>
    #include<string.h>
    #include<conio.h>
    #include<ctype.h>
  6. Thread: DevCpp Help

    by joseph0829
    Replies
    6
    Views
    1,320

    try converting 'Fin' with cin... try converting...

    try converting 'Fin' with cin... try converting thw whole program into real c++ program...
  7. Replies
    15
    Views
    2,180

    'and" is not recognised by the compiler. you use...

    'and" is not recognised by the compiler. you use &&(ampersand) or ||(or) .. && means the word and in english and || is or.. so to make it possible use || because && is only limited it the 1st...
  8. Replies
    14
    Views
    1,861

    hey, this is my final code for the subject:: ...

    hey, this is my final code for the subject::



    #include<iostream>
    #include<conio.h>
    #include<stdlib.h>

    using namespace std;
    int cstay=0, cgarb=0;
  9. Replies
    14
    Views
    1,861

    if (numero[x]==numero[x]) { a=numero[x]; } else...

    if (numero[x]==numero[x]) { a=numero[x]; }
    else if (numero[x]==numero[x]) { a=numero[x]; }

    is this the correct way to compare entered numbers??
    do i need to create another loop on the same...
  10. Replies
    19
    Views
    3,277

    goto sucks instead of "GOTO" use...

    goto sucks instead of "GOTO" use functions....such as main();
    to exit you can use system("cls"); or exit(0); with a stdlib.h header file in the includes...

    both syntax works on Dev-C++ 4.9.9 or...
  11. Replies
    14
    Views
    1,861

    Daved... try to check my codes it is correct for...

    Daved... try to check my codes it is correct for the first the?? the inputs part???
    how do i compara the entered numbers so that the compiler would know which is the same and not the same??
  12. Replies
    14
    Views
    1,861

    Goodbye Duplicates!

    Write a program that will read in N numbers, each of which is between 1 and 100, inclusive. As each number is read, print it only if it is not a duplicate of a number already read.

    Specs:

    Use...
Results 1 to 12 of 13