Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <cstdlib>
#include <iomanip>
using namespace std;
/*
Odwrotna notacja polska ONP
Koncepcja:
1. Utworzenie struktury elementu listy
#include <iostream>
#include <cstdlib>
#include <iomanip>
using namespace std;
/*
Odwrotna notacja polska ONP
Koncepcja:
1. Utworzenie struktury elementu listy
#include <iostream>
#include <cstdlib>
#include <iomanip>
using namespace std;
/*
Koncepcja:
1. Utworzenie struktury elementu listy
2. Utworzyć wskaźnik na pierwszy element listy
@dafr32
dafr32 / Odwrotna Notacja Polska
Last active August 29, 2015 13:57
Odwrotna Notacja Polska
#include <iostream>
using namespace std;
int tab[100];
int poz=-1;
int n=100;
void Push(int x)
{
@dafr32
dafr32 / Dowolny na dziesiętny
Created February 26, 2014 11:22
Dowolny na dziesiętny
#include <iostream>
using namespace std;
int Horner(string liczba, int syst)
{
int suma=0;
for(int i=0;i<liczba.length();i++ )
{
int a = liczba[i]-'0'; //kod 0 = 48
@dafr32
dafr32 / Dziesiętna na dowolny system
Created February 26, 2014 10:49
Dziesiętna na dowolny system
#include <iostream>
using namespace std;
char intTOchar(int i)
{
if (i<10)
return i+'0';
else
return i+'A' -10;
}
@dafr32
dafr32 / Matura Podstawa 2011 Zad4 "Hasła"
Created December 2, 2013 18:50
Matura Podstawa 2011 Zad4 "Hasła"
#include <iostream>
#include <fstream>
using namespace std;
bool Palindrom (string slowo)
{
for(int i=0;i<slowo.length()/2;i++)
{
if(slowo[i]!=slowo[slowo.length()-1-i]) return false;
@dafr32
dafr32 / Matura Podstawa 2012 zad.4 "Cyfry"
Created December 1, 2013 16:25
Matura Podstawa 2012 zad.4 "Cyfry"
#include <iostream>
#include <fstream>
using namespace std;
int sumaCyfr(int liczba)
{
int suma=0,reszta=0;
while(liczba>0)
@dafr32
dafr32 / Matura Rozsz 2012 zad.4
Created December 1, 2013 15:17
Matura Rozsz 2012 zad.4
#include <iostream>
#include <fstream>
using namespace std;
fstream plik1,plikKlucz,plikZapis;
string Szyfr(string slowo,string klucz)
{
int nr=0;
@dafr32
dafr32 / Matura Rozsz 2013 zad6
Created November 25, 2013 15:10
Matura Rozsz 2013 zad6
#include <iostream>
#include <fstream>
#include <sstream>
using namespace std;
string intToStr (int a)
{
ostringstream ss;
ss << a;