NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package laboratorium02;

/**
*
* @author student
*/
public class TypyDanych {

public static void typInteger()
{
System.out.println("Typ Integer");
//wersja typow prostych
int i0 = 11;
int i1 = 9;
int i2= i0+ i1;
System.out.println(i0 + " + " +i1 + " = " + i2);
//wersja obiektowa
Integer I0 = new Integer(11);
Integer I1 = new Integer(9);
Integer I2 = I0 + I1;
System.out.println(I0 + " + " + I1 + " = " + I2);

//dodatkowe mozliwosci wersji obiektowej

double x = I0.doubleValue();
System.out.println("x="+x);

//porownanie typow prostych
i0=123;
i1=123;

System.out.println("i0=" +i0+" il="+i1);
System.out.println("i0==i1 ");
if(i0==i1) System.out.println("Tak"); else System.out.println("NIE");

//porownanie typow obiektowych

I0 = new Integer(123);
I1 = new Integer(123);
I2 = I0;

System.out.println("I0="+I0+" I1="+I1+" I2="+I1);
System.out.println("I0=I1 ");
if(I0==I1) System.out.println("TAK"); else System.out.println("NIE");
System.out.println("I0=I2 ");
if(I0==I1) System.out.println("TAK"); else System.out.println("NIE");
System.out.println("I0.equals(I1) ");
if(I0.equals(I1)) System.out.println("TAK"); else System.out.println("NIE");
System.out.println("I0.equals(I1) ");
if(I0.equals(I2)) System.out.println("TAK"); else System.out.println("NIE");

//skladniki statyczne klasy integer

System.out.println("MIN=" +Integer.MIN_VALUE);
System.out.println("MAX=" +Integer.MAX_VALUE);
System.out.println("SIZE="+Integer.SIZE);

System.out.println("max: "+Integer.max(4, -6));
System.out.println("min: "+Integer.min(4, -6));

Integer I3 = Integer.decode("97");
System.out.println(i3+3);

int i3 = Integer.parseInt("-23");
System.out.println(i3+3);

public static void typString()
{
String tekst1 = "Ala ma";
String tekst2 = "kota, a kot to ";
String tekst3 = "*******";

//laczenie tekstow

String tekstCaly1 = tekst1+ " "+tekst2+tekst3;
String tekstCaly2 = tekst1.concat(" ").concat(tekst2).concat(tekst3);
System.out.println(tekstCaly1);
System.out.println(tekstCaly2);

//porownanie tekstow

if(tekst1.compareTo("Ala ma")==0) System.out.println("TAK");
else System.out.println("NIE");
if(tekst1.compareTo("ALA MA"))
}
}


}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.