CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: siddharth_1202

Search: Search took 0.02 seconds.

  1. Thread: Marquee

    by siddharth_1202
    Replies
    3
    Views
    10,500

    Re: Marquee

    I am a beginer and I am using all the identifiers which I have been taught so far.
    The compiler is DJGPP not Turbo C. If you can help then its good otherwise please dont post a reply, no one want to...
  2. Thread: Marquee

    by siddharth_1202
    Replies
    3
    Views
    10,500

    Marquee

    I am trying to make a marquee, I have made this where the text maves from right to left and also where the text first moves left to right and then right to left.
    What I am trying to do is that when...
  3. Replies
    24
    Views
    3,248

    Re: Simple C++ OOP Question

    To display what you intend your program should be like the one below. I have used DJGPP compiler, The program runs fine and produces the result as you desire.


    //WAP to sum all the even / odd...
  4. Re: Display prime numbers between 1 to 50 using Nested Loops

    I also wrote the following program for the same but both of them dont work.


    #include<iostream>
    class prime
    {
    int a,b;
    public:
    void display()
    {
  5. Display prime numbers between 1 to 50 using Nested Loops

    I need help as I am not able to underdstand where am I making a mistake in the following program to display prime numbers between 1 to 50


    #include<iostream>
    class prime
    {
    int a,b;
    public:...
  6. Replies
    10
    Views
    16,869

    Re: Pyramids in C++

    Dear Friends,
    Can you please help me with the following program?



    //WAP to print 1 to 15 in different lines in incrementing manner.
    // 1
    // 2 3
    // 4 5 6
    // 7 8 9 10
  7. Replies
    10
    Views
    16,869

    Re: Pyramids in C++

    Thanks a lot Paul, it works. I am very happy, thanks a lot for the help.
    Can you please also suggest me what mistake am I making in the below mentioned program?



    //WAP to display prime numbers...
  8. Replies
    10
    Views
    16,869

    Re: Pyramids in C++

    There is another program for which I have written a code but there is problem with it as the display is showing 51 infinite times.

    //WAP to display prime numbers between 1 to 50.
    ...
  9. Replies
    10
    Views
    16,869

    Re: Pyramids in C++

    //WAP to display
    // 1
    // 1 2 1
    // 1 2 3 2 1
    // 1 2 3 4 3 2 1
    // 1 2 3 4 5 4 3 2 1
    // achived:
    // 1
    // ...
  10. Replies
    10
    Views
    16,869

    Re: Pyramids in C++

    Thanks for your reply, it helped me, but I am still not able to get
    1
    23
    456
    78910

    can you please give me some more tips.
    I also made another program for printing
    ....1
    ...121
  11. Replies
    10
    Views
    16,869

    Pyramids in C++

    Hi Friends,
    I am a beginner in C++ I have to make a programms using loops to get the out put as
    1
    2 3
    4 5 6
    7 8 9 10
    11 12 13 14 15

    also I have to write a program having output as
    1
Results 1 to 11 of 16





Click Here to Expand Forum to Full Width

Featured