Operatory arytmetyczne

 0    47 flashcards    qni
download mp3 print play test yourself
 
Question język polski Answer język polski
Operato Dodawania
start learning
"+" int x = 1+2;
Operator odejmowania
start learning
"-" int x = 1-2;
opertaor mnożenia
start learning
"*" int x = 1*2
operator dzielenia
start learning
"/" int x = 5/2 = 2; doble x = 5/2 = 2,5 uwaga modulo!
operator modulo
start learning
"%" zwraca resztę z dzielenia
operator inkrementacji
start learning
++x; x++
operator dekrementacji
start learning
--x; x--
pre inkrementacji/dekrementacji
start learning
++x; --x
posy inkrementacji/dekrementacji
start learning
x++; x--
Przypisanie z dodawanie
start learning
"+="; x=x+5
Przypisanie z odejmowaniem
start learning
"-="; x=x-5
Przypisanie z mnożeniem
start learning
"*="; x=x*5
Przypisanie z dzieleniem
start learning
"/+"; x=x/5
Przypisanie z resztą z dzielenia
start learning
"%="; x=x%5
reprezntacja typów całkowito liczbowe
start learning
Reprentowane są przez wartości binarne
najmniej znaczący bit najmłodszy bit
start learning
bit po prawej stronie 2^0
najbardziej znaczący bit, najstarszy bit
start learning
bit po lewej stronie 2^7
Uzupełnianie do 2-operacje logiczne
start learning
negujemy liczbę a potem dodaje bit w celu zapisu ujemniej liczby
na jakich typach może wykorzystywać operatory bitowe
start learning
long int short byte chare
operator negacji bitowej (NOT)
start learning
~
operator iloczy bitowy (AND)
start learning
&
Operator sumy bitów (OR)
start learning
|
Operator różnicy symetri (XOR)
start learning
^
operator przesuniecia w prawo
start learning
>>
operator przesuniecia w prawo z wypełnieniem zerami
start learning
>>>
operator przesuniecia w lewo z wypełnieniem zerami
start learning
<<<
operator przesuniecia w lewo
start learning
.<<
Operator relacji - równy
start learning
==
Operator relacji - różny
start learning
!=
Operator relacji - większy od
start learning
>
Operator relacji - mniejszy od
start learning
<
Operator relacji - większy lub równy
start learning
=>
Operator relacji - mniejszy lib równy
start learning
<=
Operator relacji zwraca typ
start learning
boolean
operatory logiczne - koniunkcja, iloczyn
start learning
&
operatory logiczne - Alternatywna, suma
start learning
|
operatory logiczne - Różnica
start learning
^
operatory logiczne - Alternatywa ze skracaniem
start learning
||
operatory logiczne - Koniunkcja ze skracaniem
start learning
&&
operatory logiczne - negacji
start learning
!
operatory logiczne - równość
start learning
==
operatory logiczne - Różność
start learning
!=
operatory logiczne - Koniunkcj z przypisaniem
start learning
&=
operatory logiczne - Alternatywa z przypisaniem
start learning
|=
operatory logiczne - Różnica z przypisaniem
start learning
^=
Operator trójargumentowy
start learning
a = (b==0)? 1-Tak: 2-Nie;
Co to jest konkatenacja
start learning
Łączenie ze sobą wyrażeń, Strin a = "lolo" +5

You must sign in to write a comment