200 likes | 207 Views
BTÖ216-Görsel Programlama. Veri türleri, Değişken ve Sabit Kavramları, Operatörler. Veri türleri. Değişkenler. Integer -32768 ile32768. Tanımlanması int x; x = 765; int x = 765;. Long -2147483648 ile 2147483648. long x; x = 76543210;. Float float x; x = 77.932;. Bool
E N D
BTÖ216-Görsel Programlama Veri türleri, Değişken ve Sabit Kavramları, Operatörler
Değişkenler • Integer • -32768 ile32768. • Tanımlanması • int x; • x = 765; • int x = 765;
Long • -2147483648 ile 2147483648. • long x; • x = 76543210;
Float • float x; • x = 77.932;
Bool • 1 (true) or 0 (false). • bool x; • x = 0;
Char • char x; • x = ‘J‘;
String • string x; • x = “ROBOTC programı”;
Sabit tanımlama • Constint x=4;
Operatörler (Operators) • Operatorsenable you to work with data and compare information. • Arithmetic (Aritmetik) • Assignment (Atama) • Comparison (Karşılaştırma) • Logical (Mantık) • String (Dizi)
Assignment Operators • Assignment operators are used to assign a value. These will be used extensively later when we come tousing variables
ComparisonOperators • Comparison operators are used to compare two things.Each of these returns either true or false, depending on whether theoutcome of the comparison is true or false.
String Operators • String = Snippets of text • string1 = "Hello " • string2 = "World!"
string s1 = “Ahmet"; nxtDisplayString(3, "%s", s1); wait1Msec(500);
Random fonksiyonu • Rastgele sayı üretme • random(5); • taskmain(); • { • int x=random(50); • nxtDisplayTextLine(3, "%d", x); • wait1Msec(2000); • }