1
#include <iostream>
using namespace std;
int main()
{
float PL = 3.14;
float promien,pole;
cout << "Podaj promien kola:";
cin >>promien;
pole = PL * promien * promien;
cout << "Pole kola o promieniu " << promien << " wynosi: " << pole ;
return 0;
}
2
#include <iostream>
using namespace std;
int main()
{
#include <iostream>
using namespace std;
void zamien(int *a, int *b)
{
int pom =*a;
*a = *b;
*b = pom;}
int main()
{
int a,b;
cin>>a>>b;
(&a,&b);
cout<<a<<""<<b;
return 0;
}
3
cout << "Ile masz lat?:";
cin >> wiek;
if (wiek<18)
{
cout << "Nie jestes pelnoletni i nie mozesz zostac prezydentem";
}
else if ((wiek>=18)&&(wiek<35))
{
cout << "Jestes pelnoletni, nie mozesz zostac prezydentem";
}
else
{
cout << "Jestes pelnoteltni i mozesz zostac prezydentem";
}
{
}
return 0;
}
4
#include <iostream>
using namespace std;
int main()
{
float c;
float f;
cout << " Podaj temperature w celcjuszach: ";
cin >> c;
cout << endl;
f = ( c * (9.0/5) ) + 32;
cout << " Temperatura w farenheitach wynosi: " << f << endl;
cout<< endl;
system("PAUSE");
return 0;
}
5
#include<iostream>
#include<string>
using namespace std;
int main ()
{
string login, haslo;
cout<<"Podaj login: ";
cin>>login;
cout<<"Podaj haslo: ";
cin>>haslo;
if((login=="dominikD") && (haslo=="trol"))
cout<<"udalo się zalogowac"<<endl;
system("pause");
return 0;
}