Search:

Type: Posts; User: abujuguluy

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    2,497

    A little problem with for loop

    Hello guys, I have created a program that will display the array in the screen character by character with spaces in between. Now what I need to do is to display it in a diamond like pattern (1...
  2. for(int i= 0; i < row; ++i) { top++;...

    for(int i= 0; i < row; ++i)
    {
    top++;
    gotoxy(left,top);
    for(int j = 0; j< col ; ++j)
    {

    printf("* ",mat[row][col]);

    }
  3. Nevermind, solved it.

    Nevermind, solved it.
  4. Need to use gotoxy() inside a nested for loop

    Hello guys, I have created a program that will accept left and top (x,y) it will determine where the cursor will start printing "*". My problem is if i input 2 in the left variable it will print the...
  5. Replies
    1
    Views
    3,010

    Simple log in program

    Hello guys i need to make a simple log in program that will ask for the user to enter a username and password, and just like a log in program, the entered username and password must be the same with...
  6. Hey guys, I forgot to tell you that I am obliged...

    Hey guys, I forgot to tell you that I am obliged to use Turbo C Compiler.
  7. How to stop user from entering same number twice?

    i need to create a program that will accept 5 numerical inputs and determine the highest, and i also need to stop user from using the same number twice and do not count it from the 5 numerical...
  8. I need to make an infinity "loop" without using "loop" until user input 0

    Hello guys the title states the problem but here's my code, the problem I am facing right now is how to add the value of number[0] to number[1].


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

    int...
  9. Replies
    3
    Views
    1,060

    Help with the y/n continue loop

    Hi guys, i need help with the looping. where and how should i put the


    cout<<"\nWould you like to have another transaction? [y/n]";cout<<"\nEnter your choice:";

    in order for the program to...
  10. Replies
    6
    Views
    1,499

    Can someone help me clean this code up. I really...

    Can someone help me clean this code up. I really need this on Monday and it's already Saturday. Please someone help me!
  11. Replies
    6
    Views
    1,499

    Yep, someone also told me about the stone aged...

    Yep, someone also told me about the stone aged way of programming my teacher is teaching. She's also the one who told us to use the Turbo 3.0 C++ compiler. Thanks for the advice bro!
  12. Replies
    6
    Views
    1,499

    I am currently a 1st year student of BS...

    I am currently a 1st year student of BS Information Technology.
  13. Replies
    6
    Views
    1,499

    Simple ATM Code

    Hi guys, can you help me clean up my long code. It is long because I don't know how to use functions. I am new to programming. Sorry. And also, when i n from the balance inquiry menu, it goes to...
Results 1 to 13 of 13