C++ Utworzę program kalkulator, zastosuję odpowiedniki strumieni cin i cin cout
To bardzo ważne ! błagam was o pomoc, dam wszystkie punkty jakie mam ! byle żeby działało
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include "stdafx.h"
#include <iostream>
#include <conio.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int a,b,c;
cout<<"Podaj pierwsza liczbe ";
cin>>a;
cout<<"Podaj druga liczbe ";
cin>>b;
cout<<endl<<"Co chcesz zrobic z tymi liczbami?"<<endl;
cout<<"1.Dodaj."<<endl;
cout<<"2.Odejmij."<<endl;
cout<<"3.Pomnoz."<<endl;
cout<<"4.Podziel."<<endl;
cin>>c;
switch(c){
case 1: cout<<a<<" + "<<b<<" = "<<a+b;break;
case 2: cout<<a<<" - "<<b<<" = "<<a-b;break;
case 3: cout<<a<<" * "<<b<<" = "<<a*b;break;
case 4: cout<<a<<" / "<<b<<" = "<<float(a)/b;break;
default: cout<<"Nieznana operacja"<<endl;
}
cout<<endl;
getch();
return 0;
}
Testowane na VS 2010. Jezeli na innym kompilatorze nie zadziala to sproboj usunac " #include "stdafx.h""