All My Programs Goes Here
Page 1 of 1 • Share •
All My Programs Goes Here
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:
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
Permissions of this forum:
You cannot reply to topics in this forum





