Przykład tablicy i zmiennej dynamicznej
#include<iostream> #include<windows.h> #include<time.h> using namespace std; int main() { int ile; cout<<“Ile liczb wylosowac?”; cin>>ile; int *tablica; tablica = new int[ile]; …
#include<iostream> #include<windows.h> #include<time.h> using namespace std; int main() { int ile; cout<<“Ile liczb wylosowac?”; cin>>ile; int *tablica; tablica = new int[ile]; …
#include<iostream> using namespace std; int main() { int liczba1; int *adres1; liczba1=53; adres1=&liczba1; cout<<“liczba1=”<<liczba1<<endl; cout<<“adres1=”<<adres1<<endl; cout<<“adres1=”<<*adres1<<endl; }…
#include<iostream> using namespace std;…
#include <iostream> #include <iomanip> using namespace std; int main() { #define LICZBA 10 #define NAPIS “Michał” int tab[LICZBA]; int i=1; double dana=3.13579013579;…
Liczby automorficzne – jako liczby automorficzne określa się liczby, które podniesione do kwadratu zawierają w końcówce samą siebie. Liczby automorficzne w zapisie dziesiętnym kończą się 5 lub 6….
Notepad++ – rozbudowany edytor tekstu (i zamiennik systemowego Notatnika) oparty na projekcie Scintilla, rozpowszechniany na licencji GNU GPL….
Dane Segment liczba1 db 0 liczba2 db 0 ekran dw 0 txt_info db ” ************ Program odejmuje liczbe2 od liczby1 ************$” txt_menuA db “[l]:Wpis Danej1 [p]:Wpis Danej2 [w]:Wypisz wynik [Esc]:Wyjscie $” txt_menuB db ” [b]:Potwierdz [BackSpace]:Korekta [Esc]:Anuluj $” txt_linia db ” ————————————————————– $”…
#include <iostream> using namespace std; int main() { bool x; x = 652; cout << x << endl; return 0; }
#include <iostream> using namespace std; int main() { cout << ” int : ” << sizeof (int) << endl << ” unsigned int : ” << sizeof (unsigned) << endl << ” short int : ” << sizeof (short) << endl << ” unsigned short int : ” << sizeof (unsigned short) << endl <<…
#include <iostream> using namespace std; int main() { int a = 2147483647; cout << a << endl; a = a + 1; // zmienną zwiększamy o 1! cout << a << endl; return 0; }
#include<iostream> #include<time.h> #include<windows.h> using namespace std;…
#include <iostream> #include<time.h> #include<windows.h>…