15i4 stronka pomocy

Hello Startowa Stronka

/*
 * main.cpp
 *
 *  Created on: 05-03-2017
 *      Author: student
 */

#include
using namespace std;
int main ()
{
        cout << "Hello Word" << endl;
        return 0;
}

Dodawanie

/*
 * main.cpp
 *
 *  Created on: 05-03-2017
 *      Author: student
 */

#include
using namespace std;

int dodawanie (int x, int y, int z)
{
        cout << "wynik to = " << x+y+z << endl;
        return (x+y+z);
}



int main ()
{
        cout << "Hello Word" << endl;
        int liczba = dodawanie(1,2,3);
        cout << liczba << endl;
        return 0;
}

Dzielenie 

/*
 * main.cpp
 *
 *  Created on: 05-03-2017
 *      Author: student
 */

#include
using namespace std;


float dzielenie (int x, int y)
{
        return (float)x / y;
}



int main ()
{
        cout << "Hello Word" << endl;
        float liczba = dzielenie (50,24);
        cout << liczba << endl;
        return 0;
}

Reszta Z Dzielenia

/*
 * main.cpp
 *
 *  Created on: 05-03-2017
 *      Author: student
 */

#include <iostream>
using namespace std;


float dzielenie (int x, int y)
{
        return (float)x / y;
}

bool parzysta (int x)
{
        if (x%2 == 0)
                return true;
        else
                return false;
}

int main ()
{
        cout << "Hello Word" << endl;
        float liczba = dzielenie (50,24);
        cout << liczba << endl;
        cout <<parzysta(10);
        return 0;
}



Dodaj komentarz






Dodaj

© 2013-2024 PRV.pl
Strona została stworzona kreatorem stron w serwisie PRV.pl