Results 1 to 3 of 3

Thread: c++ calculator

  1. #1
    yahookillers is offline Senior Member+
    Last Online
    26th June 2014 @ 04:54 PM
    Join Date
    05 May 2009
    Location
    Peshawar Nwfp Pakistan
    Age
    34
    Posts
    541
    Threads
    196
    Credits
    584
    Thanked
    8

    Default c++ calculator



    Bahi mujeh scientific calculator cahiye with out graphics command mode mein ..oska valid code de dein ... meny ye simple calculator bana liya ha jis ka code neechai diya hova ha ab es mein agai kiya keron kon sa code add keron k ye scientific ho jye .. graphics mein ni ha ye ..

    #include<iostream.h>
    #include<conio.h>
    void main()
    {
    clrscr();

    float a,b,c;
    char oper;
    cout<<"please Enter First Number "<<endl;
    cin>>a;
    cout<<"Select Operator + - / x"<<endl;
    cin>>oper;
    cout<<"Please Enter Second Number To Calculate"<<endl;
    cin>>b;
    if(oper=='+')
    {
    c=a+b;
    cout<<"Sum ="<<c;
    }
    else if (oper=='-')
    {
    c=a-b;
    cout<<"Minus ="<<c;
    }
    else if(oper=='/')
    {
    c=a/b;
    cout<<"Division ="<<c;
    }
    else if(oper=='x')
    {
    c=a*b;
    cout<<"Multiply ="<<c;
    }
    else
    {
    cout<<"You Enter Wrong character"<<endl;
    }


    getch();
    }

  2. #2
    HASEEB610's Avatar
    HASEEB610 is offline Senior Member+
    Last Online
    16th September 2015 @ 12:07 AM
    Join Date
    16 Dec 2011
    Location
    KARACHI
    Gender
    Male
    Posts
    617
    Threads
    42
    Credits
    803
    Thanked
    35

    Default

    Bhai scientific calculator me bohot saaray options hotay hen aap btaw k kon kon se chahye to phr us hisaab se codes hongay

  3. #3
    momijan's Avatar
    momijan is offline Senior Member+
    Last Online
    24th August 2020 @ 07:58 AM
    Join Date
    27 Mar 2010
    Age
    43
    Posts
    368
    Threads
    23
    Credits
    4
    Thanked
    7

    Default

    salam bhai aap nay phir wi fi unlocker ka nahi bataya plz bata dain na

Similar Threads

  1. calculator ko check krne ka tareka k wo sahi b hay k nahi?
    By farazalishahid in forum Educational Discussion
    Replies: 17
    Last Post: 16th June 2013, 10:16 PM
  2. Zabardast calculator for nokia symbian sets
    By adilyaseen in forum Nokia & Othre Mobiles
    Replies: 12
    Last Post: 3rd November 2012, 11:36 PM
  3. Love Calculator v1.8 S60V3 J2ME
    By naveedbhatti in forum Nokia & Othre Mobiles
    Replies: 7
    Last Post: 29th December 2010, 08:54 PM
  4. Calculator he Calculator
    By Kashif Soomro in forum General Discussion
    Replies: 2
    Last Post: 14th December 2008, 02:24 AM
  5. Use Calculator without Calculator..
    By james007 in forum General Discussion
    Replies: 10
    Last Post: 14th October 2008, 04:57 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •