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

Search:

Type: Posts; User: annitaz

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,744

    capital letters

    Provide three
    menu options to format the text entered in QTextEdit to
    (1) display the letters in capital letters
    (2) display the text in red
    (3) align the text in the center

    I did the 2nd and...
  2. Replies
    5
    Views
    2,973

    Re: calculate dimensions of a circle in c++

    I added this code in main


    if(c1.isBigger(c2))
    cout << "circle 1 is bigger" << endl;
    else
    cout << "circle 2 is bigger" << endl;


    and it works. What do u think? The...
  3. Replies
    5
    Views
    2,973

    Re: calculate dimensions of a circle in c++

    I added this code in main

    [code]if(c1.isBigger(c2))
    cout << "circle 1 is bigger" << endl;
    else
    cout << "circle 2 is bigger" << endl;[\code]


    and it works. What do u...
  4. Replies
    5
    Views
    2,973

    calculate dimensions of a circle in c++

    #ifndef CIRCLE_H
    #define CIRCLE_H

    class Circle {
    public:
    //constructors
    Circle();
    Circle(double r);
    //setter
    void setRadius(double r);
  5. Replies
    0
    Views
    1,551

    Temperature converter in QT4 BEGINNER

    I need to write a program that converts a value input by the user to celcius or to fahrenheit

    How do I add the calculations>


    #include "temperature.h"
    //constructor...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured