مثال ماشین حساب ساده ای که در کلاس مطرح شد و مقرر شد برای جلسه بعد همگی آن را روی لپ تاپشان تست کنند و همراه بیاورند:
#include "stdafx.h" #include <iostream> using namespace std; int main() { int x = 0, y = 0; cout << "Please enter 2 numbers" << endl; cin >> x >> y; cout << "x + y = " << x + y << endl; cout << "x - y = " << x - y << endl; cout << "x * y = " << x * y << endl; //if (y != 0) if(y) { cout << "x / y = " << (float)x / y << endl; } else cout << "Divide by zero not allowed" << endl; cin.ignore(); getchar(); return 0; }