mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
14 lines
290 B
C++
14 lines
290 B
C++
#include "narzedzia.hpp"
|
|
|
|
int main() {
|
|
int a = 2, b = 1, c = 4;
|
|
sortuj3(a, b, c);
|
|
std::cout << std::endl;
|
|
double i = 1.5, j = 0, k = 14.234;
|
|
sortuj3(i, j, k);
|
|
std::cout << std::endl;
|
|
std::string x = "abc", y = "cde", z = "gde";
|
|
sortuj3(x, y, z);
|
|
std::cout << std::endl;
|
|
}
|