Prosty kalkulator sumy
#include
using namespace std;
int main()
{
setlocale( LC_ALL, "" );
int a,b,wynik;
cout<<"Podaj liczbę a ";
cin >> a ;
cout<<"Podaj liczbę b ";
cin>>b ;
wynik=a+b;
cout<<"Suma wynosi "<<wynik<<endl;
return 0;
}
Prosty kalkulator pola koła
#include
using namespace std;
int main()
{
setlocale(LC_CTYPE, "Polish");
double r,P;
cout << "Podaj promieñ koła r ";
cin >>r;
P=r*r*3.14;
cout<<"Pole koła wynosi "<<P<<endl;
return 0;
}
Program czy możesz zostać prezydentem
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "" );
int wiek;
cout << "Podaj swój wiek ";
cin >> wiek;
if
(
wiek>=35
)
cout<<"Mozesz zostac prezydentem."<<endl;
else
cout<<"Nie mozesz zostac prezydentem."<<endl;
return 0;
}
Kalkulator stopni Celsjusza na Fahrenheit
#include
using namespace std;
double celsius_to_fahrenheit (double);
int main()
{
double stopnie ;
setlocale(LC_CTYPE, "Polish");
cout << "Przelicznik stopni Celsjusza na Fahrenheita"<<endl;
cout << "Podaj temperature w stopniach Celsjusza: " ;
cin>> stopnie;
double fahrenheit = celsius_to_fahrenheit (stopnie);
cout<<stopnie<<" stopnie Celsjusza to "<<fahrenheit<<" stopnie Farhrenheita";
return 0;
}
double celsius_to_fahrenheit (double sts)
{
return 1.8*sts+32;
}
Program logowania
#include
using namespace std;
double celsius_to_fahrenheit (double);
int main()
{
double stopnie ;
setlocale(LC_CTYPE, "Polish");
cout << "Przelicznik stopni Celsjusza na Fahrenheita"<<endl;
cout << "Podaj temperaturê w stopniach Celsjusza: " ;
cin>> stopnie;
double fahrenheit = celsius_to_fahrenheit (stopnie);
cout<<stopnie<<" stopnie Celsjusza to "<<fahrenheit<<" stopnie Farhrenheita";
return 0;
}
double celsius_to_fahrenheit (double sts)
{
return 1.8*sts+32;
}