Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstdlib>
- #include <iostream>
- using namespace std;
- int dodaj(int a, int b)
- {
- cin >> a;
- cin >> b;
- int s=a+b;
- cout << endl;
- cout << s;
- }
- int dodaj(int a, int b, int c)
- {
- cin >> a;
- cin >> b;
- cin >> c;
- int s=a+b+c;
- cout << endl;
- cout << s;
- }
- int dodaj(int a, int b, int c, int d)
- {
- cin >> a;
- cin >> b;
- cin >> c;
- cin >> d;
- int s=a+b+c+d;
- cout << endl;
- cout << s;
- };
- //Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa
- int dodaj(string a, string b)
- {
- cin >> a;
- cin >> b;
- string s=a+b;
- cout << endl;
- cout << s;
- cout << endl;
- };
- //Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa
- int wys(string a)
- {
- cout << "string";
- cout << endl;
- cin >> a;
- cout << endl;
- cout << a;
- cout << endl;
- }
- int wys(string a,string b)
- {
- cout << "string2" ;
- cout << endl;
- cin >> a;
- cout << endl;
- cout << a;
- cout << endl;
- cout << endl;
- cin >> b;
- cout << endl;
- cout << b;
- cout << endl;
- }
- int wys(float x1)
- {
- cout << "float";
- cout << endl;
- cin >> x1;
- cout << endl;
- cout << a;
- cout << endl;
- }
- int main(int argc, char *argv[])
- {
- /*int co;
- cout<<"Ile liczb chcesz dodac? (2-4)";
- cin>>co;
- if (co==2)
- {
- dodaj(1,1);
- };
- if (co==3)
- {
- dodaj(1,1,1);
- };
- if (co==4)
- {
- dodaj(1,1,1,1);
- };
- dodaj("a","a");
- */
- float x1,x2;
- wys("a");
- wys("a","a");
- system("PAUSE");
- return EXIT_SUCCESS;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement