All My Programs Goes Here

Post new topic   Reply to topic

View previous topic View next topic Go down

All My Programs Goes Here

Post  FXTechDude on Sat Oct 04, 2008 4:15 pm

In This Post I Will Post All My Creations So I Wont Spam The Programming Thing So I Will Post Here.

Calculator 3
Download: http://rapidshare.com/files/150886084/Calculator_3.exe.html
Source:
Code:
#include <iostream>
using namespace std;

int main()
{
   math:
   int a1, a2, a3, a4, a5, a6, a7;
   cout << "Calculator 3 \n";
   cout << "Made By Fxtechdude \n";
   cout << "\n";
   cout << "Please Enter Your First Digit: \n";
   cin >> a1;
   cout << "Now The Second Digit: \n";
   cin >> a2;
   a3 = a1 + a2;
   a4 = a1 - a2;
   a5 = a1 * a2;
   a6 = a1 / a2;

   cout << "Your Answer In Addition is "<< a3 << "\n";
   cout << "Your Answer In Subtraction Is "<< a4 << "\n";
   cout << "Your Answer In Multiplication Is "<< a5 << "\n";
   cout << "Your Answer In Division Is "<< a6 << "\n";
   std::cout << "Press 1 To Go Again Press 0 To Leave";
   std::cin >> a7;
   if (a7)
      goto math;
   else
      goto end;

   end:
   cin.get();
   return 0;
}

FXTechDude

Posts: 8
Join date: 2008-08-22

View user profile

Back to top Go down

View previous topic View next topic Back to top


Post new topic   Reply to topic
Permissions of this forum:
You cannot reply to topics in this forum