<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Java  by Hantwon</title>
      <link>https://padlet.com/anton3_0/Java</link>
      <description>Genau</description>
      <language>en-us</language>
      <pubDate>2018-04-12 11:31:28 UTC</pubDate>
      <lastBuildDate>2025-10-27 16:27:12 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/251086955</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/275290801/00c9799804f41af2ab89dc46f45c5e73/java_800.jpg" />
         <pubDate>2018-04-12 11:44:50 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/251086955</guid>
      </item>
      <item>
         <title>Übersicht</title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/251087878</link>
         <description><![CDATA[<div><br>1. Was ist Java<br>2. Ursprung<br>3. Grundlagen<br>   3.1 Variablen<br>   3.2 Ein-/Ausgaben<br>   3.3 If-Bedingungen<br>   3.4 Do - while Schleife<br>4. Aufgabenstellung</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-04-12 11:47:32 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/251087878</guid>
      </item>
      <item>
         <title>1 Was ist Java</title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/258832264</link>
         <description><![CDATA[<div>Java ist eine Programmiersprache die Schüler oft in der Berufsschule kennen lernen.</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-05-08 09:36:01 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/258832264</guid>
      </item>
      <item>
         <title>2 Ursprung</title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/258832714</link>
         <description><![CDATA[<div>Die Urversion von Java, auch Oak (<strong>O</strong>bject <strong>A</strong>pplication <strong>K</strong>ernel) genannt, wurde von 1991 bis 1992 unter den Namen "The Green Project" von Patrick Naughton, Mike Sheridan, James Gosling, Bill Joy und neun weiteren Entwicklern im Auftrag von Sun Microsystems entwickelt.</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-05-08 09:38:25 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/258832714</guid>
      </item>
      <item>
         <title>3 Grundlagen</title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/258839178</link>
         <description><![CDATA[<div><strong>3.1</strong> Variablen<br> In der Programmiersprache Java gibt es, wie in vielen anderen auch, verschiedene Arten von Datentypen<br>byte * = ganze Zahlen (8bit)<br>short * = ganze Zahlen (16bit)<br>int * = ganze Zahlen (32bit)<br>long * = ganze Zahlen (64bit)<br>float * = Kommazahlen (32bit)<br>double * = Kommazahlen (64bit)<br>char * = Buchstaben/Zeichen (16it)<br>boolean * = Wahrheitswerte<br>String * = Wörter bzw Sätze <br><br>Eine weitere Art sind die Arrays  die durch die [ ] definiert werden, in c++ z.B. int [6],  in java: "int[] a = new int[6]</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-05-08 10:12:49 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/258839178</guid>
      </item>
      <item>
         <title>afgg</title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/258839273</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2018-05-08 10:13:14 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/258839273</guid>
      </item>
      <item>
         <title></title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/260152186</link>
         <description><![CDATA[<div><strong>3.2</strong> Ein-/Ausgaben<br>In einem Java Programm etwas ausgeben zu lassen ist mit diesem simplen Befehl möglich:<br>"System.out.print("Hallo"); "System.out.print(Variablenname); <br><br>Um den Benutzer etwas in eine Variable speichern zu lassen braucht man einen Scanner, dieser muss deklariert, benannt muss und aus Formatierungsgründen auch wieder schließen kann:<br>"Scanner input = new Scanner(System.in)"<br><br>Beispiel:<br>int alter;<br>Scanner input = new Scanner(System.in);<br>alter = input.nextInt();<br>System.out.print("Sie sind " + alter + " Jahre alt.");<br>input.close();</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-05-12 16:09:02 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/260152186</guid>
      </item>
      <item>
         <title></title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/260216204</link>
         <description><![CDATA[<div>3.3 If-Bedingungen<br>Der If oder ifelse Befehl ist dafür da einzelne oder zusammenhängende Bedingungen zu realisieren, um z.B. einen Alterscheck durchzuführen.<br><br>Beispiel:<br>int alter;<br>Scanner input = new Scanner(System.in);<br>alter = input.nextInt();<br>if (alter &gt;= 18){<br>System.out.println("Sie sind alt genug :)");<br>}<br>if else {<br>System.out.println("Sie sind zu jung :(");<br>}<br>input.close();</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-05-13 11:48:28 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/260216204</guid>
      </item>
      <item>
         <title></title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/260217557</link>
         <description><![CDATA[<div>3.4 Do - while Schleife<br>Schleifen sind dafür da z.B. etwas so lange zu wieder holen bis eine bestimmte Bedingung erfüllt ist.<br><br>Beispiel:<br><br><br>Scanner input = new Scanner(System.in);<br>do {<br>System.out.println("Geben sie den pin ein." );<br>b = input.nextInt();<br>if (b != 5583) {<br>System.out.println("Inkorrekt!");<br>} while (b != 5583);<br>}<br>input.close();</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-05-13 12:06:55 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/260217557</guid>
      </item>
      <item>
         <title>4 Aufgabenstellung</title>
         <author>anton3_0</author>
         <link>https://padlet.com/anton3_0/Java/wish/260221276</link>
         <description><![CDATA[<div>1. Lasse ein Rechteck berechnen<br>2. Erstelle ein funktionierendes Passwortprogramm</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-05-13 12:54:17 UTC</pubDate>
         <guid>https://padlet.com/anton3_0/Java/wish/260221276</guid>
      </item>
   </channel>
</rss>
