<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>ISBN Project by Emilio</title>
      <link>https://padlet.com/emilo2010/c8z9px4dadok</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2016-05-13 06:59:34 UTC</pubDate>
      <lastBuildDate>2024-08-10 15:07:20 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>To do</title>
         <author>han_brolo</author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/110707382</link>
         <description><![CDATA[<div><del>PAP</del><br>Struktogram<br><del>Code-Schnipsel</del><br>Grobe Planung <br><del>Hausaufgabe -&gt; Informieren</del><br>Rollenverteilung<br>Probleme / dos donts</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-05-13 07:20:27 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/110707382</guid>
      </item>
      <item>
         <title></title>
         <author>joinatic</author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111431609</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/aws/113854159/95423ac312537043afd332d7e298332a92aa3b0e/61e8e8cc8c656cf6ee3440a0399728f2.PNG" />
         <pubDate>2016-05-18 11:42:46 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111431609</guid>
      </item>
      <item>
         <title></title>
         <author>joinatic</author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111431611</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/aws/113854159/ea73354d17fe28fa4d5667e2eaebb90ba23422af/34d0a3261f43910fbc1b11a5e42af404.PNG" />
         <pubDate>2016-05-18 11:42:46 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111431611</guid>
      </item>
      <item>
         <title>Programm Ablauf Plan</title>
         <author>joinatic</author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111431613</link>
         <description><![CDATA[<div>Wir haben uns für ein PAP entschieden, da wir dies als übersichtlicher und angenehmer empfinden.</div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/aws/113854159/dadd6f45a2e29a4dbafc5d2edf629b25a241c8be/e0377e88d0ea04477bd823117eefdb34.PNG" />
         <pubDate>2016-05-18 11:42:46 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111431613</guid>
      </item>
      <item>
         <title>Probleme:</title>
         <author>joinatic</author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111432772</link>
         <description><![CDATA[<div>- Viele Konvertierungs-Probleme<br>-&nbsp;<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-05-18 11:49:55 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111432772</guid>
      </item>
      <item>
         <title>Rollenverteilung</title>
         <author>joinatic</author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111433428</link>
         <description><![CDATA[<div>Robin: Programmierung<br>Marian: Programm Ablauf Plan</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-05-18 11:54:29 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111433428</guid>
      </item>
      <item>
         <title>Hauptprogramm</title>
         <author></author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111442962</link>
         <description><![CDATA[<div>using System;<br><br>namespace ISBN_MASTER_PRORGAM<br>{<br>    class MainClass<br>    {<br>        public static void Main (string[] args)<br>        {<br>            bool exit = false;<br>            do {<br>                <em>// AUSGABE</em><br>                Console.WriteLine ("Sie haben folgende Auswahmöglichkeiten:");<br>                Console.WriteLine ("ISBN generieren [1]");<br>                Console.WriteLine ("ISBN konvertieren [2]");<br>                Console.WriteLine ("Programm beenden [3]");<br><br>                <em>// VAR</em><br>                string input = Console.ReadLine ();<br>                int gruppennummer;<br>                int verlagsnummer;<br>                int titelnummer;<br>                string input_isbn;<br><br><br>                <em>// Switch der die Eingabe prüft</em><br>                switch (input) {<br>                case "1":<br>                <br>                <em>// Eingabe der Attribute</em><br>                    Console.WriteLine ("Bitte geben sie die Gruppennummer ein:");<br>                    gruppennummer = Convert.ToInt32 (Console.ReadLine ());<br>                    Console.WriteLine ("Bitte geben sie die Verlagsnummer ein:");<br>                    verlagsnummer = Convert.ToInt32 (Console.ReadLine ());<br>                    Console.WriteLine ("Bitte geben sie die Titelnummer ein:");<br>                    titelnummer = Convert.ToInt32 (Console.ReadLine ());<br><br>                <em>// umwandeln in String</em><br>                    string temp_string = Convert.ToString (gruppennummer) + Convert.ToString (verlagsnummer) + Convert.ToString (titelnummer);<br><br>                <em>// Übergabe an Unterprogramm zur Prüfziffer-Berechnung</em><br>                    int pruefziffer10 = ISBNCR10 (Convert.ToInt32 (temp_string));<br>                    int pruefziffer13 = ISBNCR13 (Convert.ToInt32 (temp_string));<br><br>                <em>// Bau eines Strings zur Ausgabe der ISBN-10</em><br>                    string complete10 = Convert.ToString (gruppennummer) + "-" + Convert.ToString (verlagsnummer) + "-" + Convert.ToString (titelnummer) + "-" + Convert.ToString (pruefziffer10);<br>                    Console.WriteLine ("ISBN-10: " + complete10);<br>                    string complete13 = "978-" + Convert.ToString (gruppennummer) + "-" + Convert.ToString (verlagsnummer) + "-" + Convert.ToString (titelnummer) + "-" + Convert.ToString (pruefziffer13);<br>                    Console.WriteLine ("ISBN-13: " + complete13);<br>                    break;<br><br>                case "2":<br><br>                <em>// Eingabe einer ganzen ISBN</em><br>                    Console.WriteLine ("Bitte geben sie die ISBN (mit Bindestrichen!) ein:");<br>                    input_isbn = Console.ReadLine ();<br><br>                <em>// Entfernen der Prüfziffer</em><br>                    input_isbn = input_isbn.Remove (input_isbn.Length - 1);<br><br>                <em>// switch um die Länge festzustellen</em><br>                    switch (input_isbn.Length) {<br>                    <em>// für ISBN-10</em><br>                    case 9:<br>                        int isbn13 = ISBNCR13 (Convert.ToInt32 (input_isbn));<br>                        Console.WriteLine ("ISBN-13: 978-" + input_isbn + Convert.ToString (isbn13));<br>                        break;<br>                    <em>// für ISBN-13</em><br>                    case 12:<br>                        int isbn10 = ISBNCR10 (Convert.ToInt32 (input_isbn));<br>                        Console.WriteLine ("ISBN-10: " + input_isbn + Convert.ToString (isbn10));<br>                        break;<br>                    }<br>                    break;<br><br>                case "3":<br>                    Console.WriteLine ("Auf wiedersehen!");<br>                    exit = true;<br>                    break;<br>                }<br>            } while (exit == false);<br>        }<br><br>| ISBN-10 / ISBN-13 Prüfziffer Berechnung |<br><br> }</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-05-18 12:45:57 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111442962</guid>
      </item>
      <item>
         <title>ISBN-10 Prüfziffer</title>
         <author></author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111443346</link>
         <description><![CDATA[<div><em>// ISBN-10 BERECHNUNG</em><br>&nbsp; &nbsp; &nbsp; &nbsp; public static int ISBNCR10 (int a) {<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int[] test2 = new int[9];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string temp = Convert.ToString (a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int sum = 0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int pziffer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int erg;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string[] isbnchar = new string[temp.Length];<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (int i= 0; i&lt;temp.Length;i++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; isbnchar [i] = temp.Substring (i, 1);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (int i =0, j =10; i &lt;= 8; i++, j--) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; test2[i] = Convert.ToInt32(isbnchar [i]) * j;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sum = sum+ Convert.ToInt32 (test2 [i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; erg = sum % 11;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pziffer = 11 - erg;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return (pziffer);<br><br>&nbsp; &nbsp; &nbsp; &nbsp; }</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-05-18 12:47:29 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111443346</guid>
      </item>
      <item>
         <title>ISBN-13 Prüfziffer</title>
         <author></author>
         <link>https://padlet.com/emilo2010/c8z9px4dadok/wish/111443544</link>
         <description><![CDATA[<div><em>// ISBN-13 BERECHNUNG</em><br>&nbsp; &nbsp; &nbsp; &nbsp; public static int ISBNCR13 (int b) {<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string temp ="978" + Convert.ToString (b);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int sum = 0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int pziffer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int erg;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int[] test3 = new int[temp.Length];&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int j = 0;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string[] isbnchar2 = new string[temp.Length];<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (int i= 0; i&lt;temp.Length;i++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; isbnchar2 [i] = temp.Substring (i, 1);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (int i = 0; i &lt; isbnchar2.Length; i++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (i%2==0)&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; j = 1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; j = 3;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; test3 [i] = Convert.ToInt32 (isbnchar2 [i]) * j;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sum = sum + Convert.ToInt32 (test3 [i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; erg = sum % 10;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pziffer = 10 - erg;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return (pziffer);<br><br>&nbsp; &nbsp; }</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-05-18 12:48:18 UTC</pubDate>
         <guid>https://padlet.com/emilo2010/c8z9px4dadok/wish/111443544</guid>
      </item>
   </channel>
</rss>
