<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7754040094503242655</atom:id><lastBuildDate>Wed, 28 Aug 2024 14:43:38 +0000</lastBuildDate><category>Länktips</category><category>Programtips</category><category>Nyheter</category><category>Tips</category><category>VirtualBox</category><category>Blogger</category><category>Windows 7</category><category>Defragmentering</category><category>Hangman</category><category>Spotify</category><category>YouTube</category><category>C++</category><category>Crossloop</category><category>European City Guide</category><category>Fjärrhjälp</category><category>Hänga gubbe</category><category>Internet Explorer</category><category>Just don&#39;t do it</category><category>Kyrkoval</category><category>Malware</category><category>Morgonpasset Sommar</category><category>Musik</category><category>OnOff</category><category>Programmering</category><category>Ubuntu</category><category>iPod</category><title>Joolz&#39;z Blogg</title><description>¡ Datorer, Webben, Teknik och Lite vad jag vill !</description><link>http://joolzblogg.blogspot.com/</link><managingEditor>noreply@blogger.com (Oliver)</managingEditor><generator>Blogger</generator><openSearch:totalResults>47</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-6690009271906789575</guid><pubDate>Wed, 11 Jul 2012 17:25:00 +0000</pubDate><atom:updated>2012-07-11T19:28:11.774+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Hangman</category><category domain="http://www.blogger.com/atom/ns#">Hänga gubbe</category><category domain="http://www.blogger.com/atom/ns#">Programmering</category><title>Hänga gubbe i C++</title><description>Läs mer om koden &lt;a href=&quot;http://joolzblogg.blogspot.se/2009/02/hanga-gubbe-med-c-hangman-in-c.html&quot; target=&quot;&quot;&gt;här&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Klistra in koden i ett programmeringsprogram och kompilera. Koden är gjord med &lt;a href=&quot;http://www.blogger.com/wiki/Dev-C%2B%2B&quot; title=&quot;Dev-C++&quot;&gt;Dev-C++&lt;/a&gt; men även andra program som &lt;a href=&quot;http://www.blogger.com/wiki/Code::Blocks&quot; title=&quot;Code::Blocks&quot;&gt;Code::Blocks&lt;/a&gt; fungerar.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;mw-geshi mw-code mw-content-ltr&quot; dir=&quot;ltr&quot;&gt;
&lt;div class=&quot;cpp source-cpp&quot;&gt;
&lt;pre class=&quot;de1&quot;&gt;&lt;span class=&quot;co1&quot;&gt;// Hänga gubbe - Hangman, by http://joolzblogg.blogspot.com/&lt;/span&gt;
&lt;span class=&quot;co2&quot;&gt;#include &amp;lt;iostream&amp;gt;&lt;/span&gt;
&lt;span class=&quot;co2&quot;&gt;#include &amp;lt;string&amp;gt;&lt;/span&gt;
&lt;span class=&quot;co2&quot;&gt;#include &amp;lt;ctime&amp;gt;&lt;/span&gt;
&lt;span class=&quot;co2&quot;&gt;#include &amp;lt;cstdlib&amp;gt;&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;using&lt;/span&gt; &lt;span class=&quot;kw2&quot;&gt;namespace&lt;/span&gt; std&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; presentation&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; rensaSkarm&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; ordLangd&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordet&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; fyllOrdetDolt&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; kontroll&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; gissning, string ordetDolt, string ordet, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt;&lt;span class=&quot;sy3&quot;&gt;&amp;amp;&lt;/span&gt; antalFel, &lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; felGissningar&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; resultat&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordet, string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; antalFel&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;bool&lt;/span&gt; jamforFalt&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordet, string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; ritaGubbe&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; antalFel&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; omvandla&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt;&lt;span class=&quot;sy3&quot;&gt;&amp;amp;&lt;/span&gt; gissning&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; tillkalla&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; main&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; koraigen&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; meny&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; slumpord&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; felGissningar&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;do&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;    
    &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; antalFel &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;  
    string ordetDolt&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; gissning&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    presentation&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;&lt;span class=&quot;es1&quot;&gt;\t&lt;/span&gt;MENY&quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;1. Skriv in eget ord&quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;2. L&lt;span class=&quot;es2&quot;&gt;\x86&lt;/span&gt;t datorn slumpa fram ett ord&quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Ditt val: &quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;cin&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; meny&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    string ordet&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;meny &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;1&#39;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
             &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Skriv ordet: &quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
             &lt;span class=&quot;kw3&quot;&gt;cin&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; ordet&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
             rensaSkarm&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;meny &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;2&#39;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
             &lt;span class=&quot;kw3&quot;&gt;srand&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw3&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
             slumpord &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;kw3&quot;&gt;rand&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy2&quot;&gt;%&lt;/span&gt;&lt;span class=&quot;nu19&quot;&gt;16&lt;/span&gt; &lt;span class=&quot;sy2&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
             &lt;span class=&quot;kw1&quot;&gt;switch&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;slumpord&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
             &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;mobil&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;lastbil&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;bokhylla&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;datorspel&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;standardbibliotek&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;kol&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;7&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;jojjo&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;hangman&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;9&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;oliver&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;algoritm&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;11&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;flagga&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;12&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;kassettband&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;13&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;skolarbete&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;14&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;nationalencyklopedin&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;wikipedia&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                    &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;16&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;underverk&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                         &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
             &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt; 
    &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
         rensaSkarm&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
         &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Felinmatning! Ordet s&lt;span class=&quot;es2&quot;&gt;\x84&lt;/span&gt;tts till &lt;span class=&quot;es1&quot;&gt;\&quot;&lt;/span&gt;loser&lt;span class=&quot;es1&quot;&gt;\&quot;&lt;/span&gt; f&lt;span class=&quot;es2&quot;&gt;\x94&lt;/span&gt;r att p&lt;span class=&quot;es2&quot;&gt;\x86&lt;/span&gt;minna om dig! &lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
         ordet &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;loser&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
 
    &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; ordLangd&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;ordet&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    fyllOrdetDolt&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;ordetDolt, langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    tillkalla&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;ordetDolt, langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    &lt;span class=&quot;kw1&quot;&gt;do&lt;/span&gt; 
    &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;                                                                                             
       &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;Gissa p&lt;span class=&quot;es2&quot;&gt;\x86&lt;/span&gt; en bokstav: &quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
       &lt;span class=&quot;kw3&quot;&gt;cin&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; gissning&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
       omvandla&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;gissning&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
       rensaSkarm&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
       kontroll&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;gissning, ordetDolt, ordet, langd, antalFel, felGissningar&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
       &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Felaktiga gissningar: &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; antalFel &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
 
 
       &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Testade bokst&lt;span class=&quot;es2&quot;&gt;\x84&lt;/span&gt;ver: &quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
       &lt;span class=&quot;kw1&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; b &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; b &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&lt;/span&gt; antalFel&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; b&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
       &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
           &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; felGissningar&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;b&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
           &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39; &#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
       &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
       &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
 
       &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
       tillkalla&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;ordetDolt, langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;   
       ritaGubbe&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;kw1&quot;&gt;while&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;jamforFalt&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;ordet, ordetDolt, langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;sy3&quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt; antalFel &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    resultat&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;ordet, ordetDolt, antalFel&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Vill du spela igen? (j/n) &quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;cin&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; koraigen&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
    rensaSkarm&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;kw1&quot;&gt;while&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;koraigen &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;j&#39;&lt;/span&gt; &lt;span class=&quot;sy3&quot;&gt;||&lt;/span&gt; koraigen &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;J&#39;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;    
 
    &lt;span class=&quot;kw3&quot;&gt;system&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;&quot;PAUSE&quot;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw1&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; presentation&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;&lt;span class=&quot;es1&quot;&gt;\t&lt;/span&gt; V&lt;span class=&quot;es2&quot;&gt;\x84&lt;/span&gt;lkommen till Hangman 1.0 &lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Instruktioner: Ett ord har valts ut. Gissa p&lt;span class=&quot;es2&quot;&gt;\x86&lt;/span&gt; en bokstav och se &lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;om den finns med i ordet. Spelet &lt;span class=&quot;es2&quot;&gt;\x84&lt;/span&gt;r slut n&lt;span class=&quot;es2&quot;&gt;\x84&lt;/span&gt;r du &lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;har kommit p&lt;span class=&quot;es2&quot;&gt;\x86&lt;/span&gt; ordet eller efter sex felaktiga gissningar. &lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; rensaSkarm&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; ordLangd&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordet&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     langd &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; ordet.&lt;span class=&quot;me1&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
     &lt;span class=&quot;kw1&quot;&gt;return&lt;/span&gt; langd&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;      
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; fyllOrdetDolt&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; i &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; i &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&lt;/span&gt; langd&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; i&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
         ordetDolt&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;i&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;*&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; kontroll&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; gissning, string ordetDolt, string ordet, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt;&lt;span class=&quot;sy3&quot;&gt;&amp;amp;&lt;/span&gt; antalFel, &lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt; felGissningar&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; temp &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
 
     &lt;span class=&quot;kw1&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; y &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; y &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&lt;/span&gt; langd&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; y&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
         &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;gissning &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; ordet&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;y&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
         &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
              ordetDolt&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;y&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; gissning&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
         &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
         &lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt; 
         &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
              temp&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
         &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;temp &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
              felGissningar&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;antalFel&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; gissning&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
              antalFel&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; resultat&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordet, string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; antalFel&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
               &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;Du vann! Du kn&lt;span class=&quot;es2&quot;&gt;\x84&lt;/span&gt;&quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;ckte ordet &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; ordet &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;. &lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
               &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;Du f&lt;span class=&quot;es2&quot;&gt;\x94&lt;/span&gt;rlorade! Ordet var &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; ordet &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;. &lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;es1&quot;&gt;\n&lt;/span&gt;&quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;bool&lt;/span&gt; jamforFalt&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordet, string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw4&quot;&gt;bool&lt;/span&gt; svar&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; temp &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; z &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; z &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&lt;/span&gt; langd&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; z&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
         &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;ordet&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;z&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; ordetDolt&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;z&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
         &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                      temp&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
         &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;temp &lt;span class=&quot;sy3&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
              svar &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;kw2&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
              svar &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;kw2&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
 
     &lt;span class=&quot;kw1&quot;&gt;return&lt;/span&gt; svar&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; ritaGubbe&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; antalFel&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;        :&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;:   &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;       :                         :  &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;      :...........................: &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;        :&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;:   &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;       :                         :  &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;      :...........................: &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |  /                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            | /                     &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |/                      &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;        :&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;:   &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;       :                         :  &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;      :...........................: &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            _____________           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |  /                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            | /                     &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |/                      &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;        :&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;:   &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;       :                         :  &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;      :...........................: &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            _____________           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |  /        !           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            | /         !           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |/          !           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;        :&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;:   &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;       :                         :  &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;      :...........................: &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;antalFel &lt;span class=&quot;sy1&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            _____________           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |  /        !           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            | /         !           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |/          !           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |           o           &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |          -|-          &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |          / &lt;span class=&quot;es1&quot;&gt;\\&lt;/span&gt;         &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;            |                       &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;        :&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;:   &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;       :                         :  &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;      :...........................: &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                  &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;                                    &quot;&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;   
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; omvandla&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;char&lt;/span&gt;&lt;span class=&quot;sy3&quot;&gt;&amp;amp;&lt;/span&gt; gissning&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
     &lt;span class=&quot;kw1&quot;&gt;switch&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;gissning&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;A&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;a&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;B&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;b&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;C&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;c&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;D&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;d&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;E&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;e&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;F&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;f&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;G&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;g&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;H&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;h&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;I&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;i&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;J&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;j&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;K&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;k&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;L&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;l&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;M&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;m&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;N&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;n&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;O&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;o&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;P&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;p&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;Q&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;q&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;R&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;r&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;S&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;s&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;T&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;t&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;U&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;u&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;V&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;v&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;X&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;x&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;Y&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;y&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;Z&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;z&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;Å&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;å&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;Ä&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;ä&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;case&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;Ö&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;:&lt;/span&gt;
                 gissning &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&#39;ö&#39;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
                 &lt;span class=&quot;kw1&quot;&gt;break&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
     &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; tillkalla&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;string ordetDolt, &lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; langd&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Ordet: &quot;&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;kw1&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kw4&quot;&gt;int&lt;/span&gt; h &lt;span class=&quot;sy1&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; h &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&lt;/span&gt; langd&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt; h&lt;span class=&quot;sy2&quot;&gt;++&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;{&lt;/span&gt;
        &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; ordetDolt&lt;span class=&quot;br0&quot;&gt;[&lt;/span&gt;h&lt;span class=&quot;br0&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;sy1&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; endl&lt;span class=&quot;sy4&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;}&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;</description><link>http://joolzblogg.blogspot.com/2012/07/hanga-gubbe-i-c.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-2139346650867343923</guid><pubDate>Thu, 24 Dec 2009 10:14:00 +0000</pubDate><atom:updated>2009-12-24T11:14:18.944+01:00</atom:updated><title>God Jul!</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgT-iSeRy8mZ9F_3gT74unW8RPSoWw8ckGR9Zqno1APpNm1wDZ1mIrWbH9e5MFGLxhC2vobyvqnAslYFwSD3lZ-vYTZnm4OZpRyLltdDWPXCplTFNb3KV_hYC3b_uZ6jUaGxutJ-QJPvsw/s1600-h/photo_9035_20091025.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot; tooltip=&quot;linkalert-tip&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgT-iSeRy8mZ9F_3gT74unW8RPSoWw8ckGR9Zqno1APpNm1wDZ1mIrWbH9e5MFGLxhC2vobyvqnAslYFwSD3lZ-vYTZnm4OZpRyLltdDWPXCplTFNb3KV_hYC3b_uZ6jUaGxutJ-QJPvsw/s400/photo_9035_20091025.jpg&quot; tooltip=&quot;linkalert-tip&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://joolzblogg.blogspot.com/2009/12/god-jul.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgT-iSeRy8mZ9F_3gT74unW8RPSoWw8ckGR9Zqno1APpNm1wDZ1mIrWbH9e5MFGLxhC2vobyvqnAslYFwSD3lZ-vYTZnm4OZpRyLltdDWPXCplTFNb3KV_hYC3b_uZ6jUaGxutJ-QJPvsw/s72-c/photo_9035_20091025.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-6032710784306678436</guid><pubDate>Sun, 20 Sep 2009 11:57:00 +0000</pubDate><atom:updated>2009-09-20T13:57:00.851+02:00</atom:updated><title>Inget kyrkoval för mig</title><description>Har bestämt mig. Ska inte rösta i kyrkovalet 2009. Har faktiskt viktigare saker för mig, typ övningsköra ner till stranden och springa. :)</description><link>http://joolzblogg.blogspot.com/2009/09/inget-kyrkoval-for-mig.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-710222794454073408</guid><pubDate>Fri, 18 Sep 2009 22:40:00 +0000</pubDate><atom:updated>2009-09-19T00:43:06.852+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Kyrkoval</category><category domain="http://www.blogger.com/atom/ns#">Länktips</category><category domain="http://www.blogger.com/atom/ns#">Nyheter</category><title>Kyrkoval imorgon och kyrkan är modernare än någonsin</title><description>Som sagt, kyrkoval imorgon. Vet inte riktigt om jag ska rösta. Hur stor påverkan har man egentligen, eller rättare sagt, vad är det man har påverkan om? Informationen är minst sagt bristfällig.&lt;br /&gt;
I alla fall så har kyrkan nu (eller egentligen för ganska länge sedan) infört att man kan be en bön på nätet och skicka den till en av domkyrkorna. man kan även läsa andas böner, prenumerera på dem, twittra om dem, osv...&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.svenskakyrkan.se/be/&quot;&gt;Så ta en titt på svenskakyrkan.se/be&lt;/a&gt; eller se nedan vad folk ber om &quot;sommar&quot; just nu:&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;200&quot; width=&quot;400&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://svenskakyrkan.se/be/swf/blog.swf?s=Sommar&quot;&gt;&lt;/param&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://svenskakyrkan.se/be/swf/blog.swf?s=Sommar&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; width=&quot;400&quot; height=&quot;200&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://joolzblogg.blogspot.com/2009/09/kyrkoval-imorgon-och-kyrkan-ar.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-1932904891299385792</guid><pubDate>Fri, 18 Sep 2009 22:28:00 +0000</pubDate><atom:updated>2009-09-19T00:42:43.723+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Musik</category><title>Saab väljer rätt låt igen</title><description>Inte nog med att Oh Laura, mer eller mindre, blev kända genom sin låt &quot;Release Me&quot; via Saabs reklam, nu kommer en ny hit. Reklamfilmen handlar om en man som via sitt ritblock upptäcker världen och kommer på något som inte bara är en bil, det är en Saab. :) Låten heter &quot;The Time Is Now&quot; och sjungs av Asha Ali.&lt;br /&gt;
&lt;br /&gt;
Uppdatering:&amp;nbsp; Låten är just nu den näst mest nedladdade låten i Sverige via iTunes.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://changeperspective.saab.com/player/index.html&quot; tooltip=&quot;linkalert-tip&quot;&gt;Länk till låten på Saabs webbplats&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;340&quot; width=&quot;440&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/0hc0buYIZXI&amp;hl=sv&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/0hc0buYIZXI&amp;hl=sv&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;440&quot; height=&quot;340&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://joolzblogg.blogspot.com/2009/09/saab-valjer-ratt-lat-igen.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-6589981878464235481</guid><pubDate>Sat, 12 Sep 2009 17:53:00 +0000</pubDate><atom:updated>2009-09-19T00:42:19.016+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Länktips</category><title>Nervösa pojkar i Idol 2009</title><description>Eller, som låtsas vara det i alla fall. Men egentligen tycker jag det konstigaste i hela videon är när Laila Bagge i slutet bara knäcker fram:&lt;br /&gt;
- Kan man ta en chokladbollsbit?&lt;br /&gt;
&lt;br /&gt;
Ehh?&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;340&quot; width=&quot;560&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/_s7c__naX-Y&amp;hl=sv&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/_s7c__naX-Y&amp;hl=sv&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;460&quot; height=&quot;340&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://joolzblogg.blogspot.com/2009/09/nervosa-pojkar-i-idol-2009.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-7154402271670510300</guid><pubDate>Fri, 04 Sep 2009 17:03:00 +0000</pubDate><atom:updated>2009-12-24T11:18:31.745+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Just don&#39;t do it</category><title>Nytt golv - svart och smakar soja</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://www.matservice.se/bilder/stora/7310240078039.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;http://www.matservice.se/bilder/stora/7310240078039.jpg&quot; tooltip=&quot;linkalert-tip&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;Visste du att aluminiumformen som omsluter Felix fullkornspajer har små hål i sig? Häll kinasoja i den och försök transportera sojan mellan två rum så kommer du att märka det…</description><link>http://joolzblogg.blogspot.com/2009/09/nytt-golv-svart-och-smakar-soja.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-7453664270202303191</guid><pubDate>Wed, 02 Sep 2009 13:25:00 +0000</pubDate><atom:updated>2009-09-02T15:27:13.151+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Blogger</category><title>Down with Internet Explorer 6</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_i9XHKZI8oOTUV0_3SaJISboM3fGSaetPK9ihXu7_MIl4gweUSo1HJEKwc8-QccekzscRmf7s7XiohE_yjK_rj6tWWG9Gyeghim_Gtn9iH_pUEicOUiLGRpUNmcMGPb9UiXG0NJwsTGU/s1600-h/IE6NoMore.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; tooltip=&quot;linkalert-tip&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_i9XHKZI8oOTUV0_3SaJISboM3fGSaetPK9ihXu7_MIl4gweUSo1HJEKwc8-QccekzscRmf7s7XiohE_yjK_rj6tWWG9Gyeghim_Gtn9iH_pUEicOUiLGRpUNmcMGPb9UiXG0NJwsTGU/s400/IE6NoMore.png&quot; tooltip=&quot;linkalert-tip&quot; /&gt;&lt;/a&gt;&lt;/div&gt;Använder du fortfarande IE6? Sluta med det! Inte nog med att du stoppar utvecklingen av webbsidor som hela tiden måste göras bakåtkompatibla, du utsätter även din dator för &lt;a href=&quot;http://sv.wikipedia.org/wiki/S%C3%A4kerhetsh%C3%A5l&quot; tooltip=&quot;linkalert-tip&quot;&gt;säkerhetshål&lt;/a&gt; och surfar långsammare.&lt;br /&gt;
&lt;br /&gt;
Trots att IE6 är två versioner gammal används webbläsaren fortfarande av hela&amp;nbsp; 25,25% och har därmed störst andel på marknaden. För att minska dessa användning har flera kampanjer startats och &lt;a href=&quot;http://www.ie6nomore.com/&quot; tooltip=&quot;linkalert-tip&quot;&gt;IE6 No More&lt;/a&gt; är en av dem, som jag dessutom gått med i. IE6 No More lägger in en varningsruta längst upp på sidan när du besöker den i IE6 som säger att du bör uppgradera eller byta din webbläsare. Var vänlig och gör detta så Internet kan utvecklas vidare.</description><link>http://joolzblogg.blogspot.com/2009/09/down-with-internet-explorer-6.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_i9XHKZI8oOTUV0_3SaJISboM3fGSaetPK9ihXu7_MIl4gweUSo1HJEKwc8-QccekzscRmf7s7XiohE_yjK_rj6tWWG9Gyeghim_Gtn9iH_pUEicOUiLGRpUNmcMGPb9UiXG0NJwsTGU/s72-c/IE6NoMore.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-8821734311295091607</guid><pubDate>Wed, 02 Sep 2009 13:06:00 +0000</pubDate><atom:updated>2009-09-02T20:29:57.776+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Nyheter</category><title>Eyeworks filmar - betalar i mjöl</title><description>&lt;a href=&quot;http://gabyaguilar.blogg.se/images/2008/carpeauxugolino_21322450.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;http://gabyaguilar.blogg.se/images/2008/carpeauxugolino_21322450.jpg&quot; tooltip=&quot;linkalert-tip&quot; width=&quot;133&quot; /&gt;&lt;/a&gt;När Eyeworks skulle filma SVT:s nya dokumentär &quot;Den stora resan&quot; i Afrika betalade de de namibiska medverkarna i majsmjöl. De fick mycket kritik mot detta och fick kommentarer som påstod att det var &lt;a href=&quot;http://sv.wikipedia.org/wiki/Kolonialism&quot; tooltip=&quot;linkalert-tip&quot;&gt;kolonialistiskt&lt;/a&gt;.&lt;br /&gt;
Men vad är egentligen mest kolonialistiskt! Att betala i mjöl eller att bestämma att någon inte ska ta emot betalningar i mjöl!?&lt;br /&gt;
(Jag har just börjat läsa filosofi.) :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Källa: &lt;a href=&quot;http://mobil.aftonbladet.se/nojesbladet/article5717140.ab;jsessionid=F12A87D6683D9FA660D42124388025D6&quot;&gt;Ab &lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/09/eyeworks-filmar-och-betalar-med-mjol.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-3757353149779448350</guid><pubDate>Mon, 31 Aug 2009 14:57:00 +0000</pubDate><atom:updated>2009-09-02T20:30:11.859+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Nyheter</category><title>Microsoft retuscherade bort svart man</title><description>När Microsoft skulle sätta upp reklam i Polen retuscherade de bort den svarta mannen i mitten och ersatte honom med en vit man! Sant.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvvWNhMVPk5XE48KpnyyZBDqK3hnI0WcAf2WeMImffqSi0gBUoJiZ2ahyrLD8J_5SC5oJZmdEk4HuA-EW4_7xwreYxRNNjB_IEf_fnXikb47nxsbV4WBrSk1zNKny0C8Bq3vxd57xldsk/s1600-h/Microsoft+retuscherade+bort+svart+man.jpg&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5376157442128054754&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvvWNhMVPk5XE48KpnyyZBDqK3hnI0WcAf2WeMImffqSi0gBUoJiZ2ahyrLD8J_5SC5oJZmdEk4HuA-EW4_7xwreYxRNNjB_IEf_fnXikb47nxsbV4WBrSk1zNKny0C8Bq3vxd57xldsk/s400/Microsoft+retuscherade+bort+svart+man.jpg&quot; style=&quot;cursor: pointer; float: left; height: 246px; margin: 0pt 10px 10px 0pt; width: 400px;&quot; tooltip=&quot;linkalert-tip&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Källa: &lt;a href=&quot;http://di.se/Nyheter/?page=/Avdelningar/Artikel.aspx%3FO%3DRSS%26ArticleId%3D2009%255C08%255C27%255C349971&quot; tooltip=&quot;linkalert-tip&quot;&gt;di&lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/08/microsoft-retuscherade-bort-svart-man.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvvWNhMVPk5XE48KpnyyZBDqK3hnI0WcAf2WeMImffqSi0gBUoJiZ2ahyrLD8J_5SC5oJZmdEk4HuA-EW4_7xwreYxRNNjB_IEf_fnXikb47nxsbV4WBrSk1zNKny0C8Bq3vxd57xldsk/s72-c/Microsoft+retuscherade+bort+svart+man.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-1178070772754149638</guid><pubDate>Fri, 31 Jul 2009 12:57:00 +0000</pubDate><atom:updated>2009-07-31T15:06:17.221+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">European City Guide</category><category domain="http://www.blogger.com/atom/ns#">Länktips</category><category domain="http://www.blogger.com/atom/ns#">Morgonpasset Sommar</category><category domain="http://www.blogger.com/atom/ns#">YouTube</category><title>Blufföretag: European City Guide - varning</title><description>Vill du bli av med 987 euro över tre år (ungeför 30&#39;000 SEK) så ska du annonsera i European City Guide. I det finstilta står nämligen att du ska betala just denna summa.&lt;br /&gt;&lt;br /&gt;Filmen nedan är gjord av &lt;a href=&quot;http://www.sr.se/sida/default.aspx?ProgramId=3219&quot;&gt;Morgonpasset Sommar i Sveriges Radio P3&lt;/a&gt;, dagens förgyllare under sommarjobbet! :) Observera, hela filmen är ett stort &lt;a tooltip=&quot;linkalert-tip&quot; href=&quot;http://sv.wikipedia.org/wiki/Ironitecken&quot;&gt;ironitecken&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/GLB5d1Ff8jc&amp;hl=sv&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/GLB5d1Ff8jc&amp;hl=sv&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://joolzblogg.blogspot.com/2009/07/blufforetag-european-city-guide.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-3007635679236146691</guid><pubDate>Fri, 31 Jul 2009 11:32:00 +0000</pubDate><atom:updated>2009-07-31T13:39:32.774+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Länktips</category><category domain="http://www.blogger.com/atom/ns#">YouTube</category><title>Vanligt bröllop, eller!?</title><description>&lt;object height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/4-94JhLEiN0&amp;amp;hl=sv&amp;amp;fs=1&amp;amp;&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/4-94JhLEiN0&amp;amp;hl=sv&amp;amp;fs=1&amp;amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://joolzblogg.blogspot.com/2009/07/vanligt-brollop-eller.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-3897241669569436756</guid><pubDate>Sun, 26 Jul 2009 08:46:00 +0000</pubDate><atom:updated>2009-07-30T17:08:53.873+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Länktips</category><category domain="http://www.blogger.com/atom/ns#">Programtips</category><category domain="http://www.blogger.com/atom/ns#">Spotify</category><title>Skaffa musik gratis - på avancerat sätt</title><description>Jag använder Spotify och har kommit på hur jag ska ta musiken därifrån till dator (omvandla till .mp3-fil). Du spelar in med &lt;a tooltip=&quot;linkalert-tip&quot; href=&quot;http://audacity.sourceforge.net/&quot;&gt;Audacity&lt;/a&gt; vad datorn spelar upp. Inte det lättaste och det tar lite tid, men du får perfekt ljud.&lt;br /&gt;&lt;br /&gt;Om du nöjer dig med medelmåttig kvalitet på låtarna kan du hitta ett YouTube-klipp med låten och sedan använda &lt;a tooltip=&quot;linkalert-tip&quot; href=&quot;http://www.flv2mp3.com/&quot;&gt;flv2mp3.com&lt;/a&gt; som enbart klipper ut ljudet ur YouTube-klippet och låter dig ladda ned det som .mp3-fil. Båda sätten är gratis!&lt;br /&gt;&lt;br /&gt;Titta på dessa guiderna om du vill testa sätt ett:&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/VwuCbpEldoo&amp;amp;hl=sv&amp;amp;fs=1&amp;amp;&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/VwuCbpEldoo&amp;amp;hl=sv&amp;amp;fs=1&amp;amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; height=&quot;340&quot; width=&quot;460&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/troI2CX5fzQ&amp;amp;hl=sv&amp;amp;fs=1&amp;amp;&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/troI2CX5fzQ&amp;amp;hl=sv&amp;amp;fs=1&amp;amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://joolzblogg.blogspot.com/2009/07/skaffa-gratis-musik-pa-avancerat-satt.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-8243057205495620703</guid><pubDate>Sun, 26 Jul 2009 08:10:00 +0000</pubDate><atom:updated>2009-07-26T10:45:00.720+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">iPod</category><category domain="http://www.blogger.com/atom/ns#">OnOff</category><title>iPod Touch!</title><description>Köpte en iPod Touch 8GB på OnOff. :D Köpte den för 1600 och såg att priset nu var uppe 1900 igen. Snacka om att köpa vid rätt tillfälle.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Vad som är bra med den:&lt;/u&gt;&lt;br /&gt;+ Webbläsaren Safari&lt;br /&gt;+ Wifi-uppkopplingen&lt;br /&gt;+ Inbyggd funktion för &lt;a tooltip=&quot;linkalert-tip&quot; href=&quot;http://datorn.ifokus.se/Articles/Read.aspx?ArticleId=5dfce7c5-5f52-43cd-b294-55e0ffdce6da&quot;&gt;att ta skärmdumpar&lt;/a&gt;&lt;br /&gt;+ &lt;span style=&quot;font-weight: bold;&quot;&gt;Applikationerna! (massor av gratis program och spel!, du behöver inte jailbreaka)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Vad som är dåligt med den:&lt;/u&gt;&lt;br /&gt;- Ingen FM-radio (ska köpa en radioadapter som kopplas till iPoden och på så sett får radio)&lt;br /&gt;- Laddas inte via eluttag utan i USB-uttaget på din dator (ska köpa väggladdare)&lt;br /&gt;- Lätt att repa (ska köpa skal)&lt;br /&gt;- Använder iPhone OS där uppdateringarna bara är gratis för iPhone. Att uppdatera iPoden från version 2.2.1 till 3.0 &lt;a tooltip=&quot;linkalert-tip&quot; href=&quot;http://www.apple.com/se/ipodtouch/softwareupdate.html&quot;&gt;kostar 75:-&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Helt klart prisvärd.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;Lite skärmdumpar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWdeXqb0fXURWj0Jg91u2fyriT6ggtx0oxAuE5mzTkVXoADbDhF1SQKa6uT-8t6yCsx3tyY3bje_jYO7HY-TU3SX_xqybhA06UMt4Kf4rvCHc6EdPuCsLVrIuxU7rXBfnQbFuJkULWXTQ/s1600-h/IMG_0019%5B1%5D.PNG&quot;&gt;&lt;img tooltip=&quot;linkalert-tip&quot; style=&quot;cursor: pointer; width: 214px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWdeXqb0fXURWj0Jg91u2fyriT6ggtx0oxAuE5mzTkVXoADbDhF1SQKa6uT-8t6yCsx3tyY3bje_jYO7HY-TU3SX_xqybhA06UMt4Kf4rvCHc6EdPuCsLVrIuxU7rXBfnQbFuJkULWXTQ/s320/IMG_0019%5B1%5D.PNG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5362685331972981378&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8OcKq459zy_vqpTXvlBabEdh1mc2G0uC8_YH-SyP-9R2_h_a0AWUwhT8At2S3ii_6uB6qyDi3jPTUbCeLaXpp6P8zovUJfqsdd4o30QRaHl1v0Oq6R5ixXkvMGxOEhxPND7OGddGa86E/s1600-h/IMG_0018%5B1%5D.PNG&quot;&gt;&lt;img tooltip=&quot;linkalert-tip&quot; style=&quot;cursor: pointer; width: 214px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8OcKq459zy_vqpTXvlBabEdh1mc2G0uC8_YH-SyP-9R2_h_a0AWUwhT8At2S3ii_6uB6qyDi3jPTUbCeLaXpp6P8zovUJfqsdd4o30QRaHl1v0Oq6R5ixXkvMGxOEhxPND7OGddGa86E/s320/IMG_0018%5B1%5D.PNG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5362685227254887922&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXenRChFFwRR1CWD4E2IrP3lOpoQxcwzNbcSNmFWukvAmHkVFHIxL72PTABKbeDQqp500Aou8mGJQEutASsYagUPbd8NIhrA9Y2FeQNZTaxDwV6wkAkKMeoBoKmmlGOHkXaOMzEIAUEYg/s1600-h/IMG_0017%5B1%5D.PNG&quot;&gt;&lt;img tooltip=&quot;linkalert-tip&quot; style=&quot;cursor: pointer; width: 214px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXenRChFFwRR1CWD4E2IrP3lOpoQxcwzNbcSNmFWukvAmHkVFHIxL72PTABKbeDQqp500Aou8mGJQEutASsYagUPbd8NIhrA9Y2FeQNZTaxDwV6wkAkKMeoBoKmmlGOHkXaOMzEIAUEYg/s320/IMG_0017%5B1%5D.PNG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5362685129001018994&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwyDjyxoK_QiQ1qHZdvIc7WoC8QWk1eGGg_XRpZx9d5MeeJgrITodENy1zFj_pE-xkAlqb9RzwnQP2gPq4ICVuuh8av7_YSyzNOZWSl-_Z6clbAQoCDWMD3Gtp1mtbQ11GXm1rNtDnMEA/s1600-h/IMG_0001%5B1%5D.PNG&quot;&gt;&lt;img tooltip=&quot;linkalert-tip&quot; style=&quot;cursor: pointer; width: 214px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwyDjyxoK_QiQ1qHZdvIc7WoC8QWk1eGGg_XRpZx9d5MeeJgrITodENy1zFj_pE-xkAlqb9RzwnQP2gPq4ICVuuh8av7_YSyzNOZWSl-_Z6clbAQoCDWMD3Gtp1mtbQ11GXm1rNtDnMEA/s320/IMG_0001%5B1%5D.PNG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5362685048935933666&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihcHbGZMlqsCslJJyrKi5uHFkuVX62VtM2Q9y8k_Su-d9rDuonbiqz322KyjqplbQMRI4aItJZB07yd3CBhS25wB5DJ_Y_diYHl_iAat_tCVNMv1VrT-c5L8KRx1e0zxL7b9gaOx2wjD0/s1600-h/IMG_0020%5B1%5D.PNG&quot;&gt;&lt;img tooltip=&quot;linkalert-tip&quot; style=&quot;cursor: pointer; width: 214px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihcHbGZMlqsCslJJyrKi5uHFkuVX62VtM2Q9y8k_Su-d9rDuonbiqz322KyjqplbQMRI4aItJZB07yd3CBhS25wB5DJ_Y_diYHl_iAat_tCVNMv1VrT-c5L8KRx1e0zxL7b9gaOx2wjD0/s320/IMG_0020%5B1%5D.PNG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5362686038723309410&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/07/ipod-touch.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWdeXqb0fXURWj0Jg91u2fyriT6ggtx0oxAuE5mzTkVXoADbDhF1SQKa6uT-8t6yCsx3tyY3bje_jYO7HY-TU3SX_xqybhA06UMt4Kf4rvCHc6EdPuCsLVrIuxU7rXBfnQbFuJkULWXTQ/s72-c/IMG_0019%5B1%5D.PNG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-3414081397164610100</guid><pubDate>Sun, 26 Jul 2009 08:06:00 +0000</pubDate><atom:updated>2009-07-26T10:10:04.947+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Ubuntu</category><title>Ubuntu är mörkt</title><description>Jag kör Ubuntu via &lt;a href=&quot;http://wubi-installer.org/&quot;&gt;Wubi&lt;/a&gt; men jag får inte rätt med skärmens ljusstyrka. I Vista har jag inga problem. Jag har varit inne på Ubuntu&#39;s &quot;kontrollpanel&quot; och ljusstyrkan är på högsta. Det är det konstiga. Något förslag?</description><link>http://joolzblogg.blogspot.com/2009/07/ubuntu-ar-morkt.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-2883874823679152000</guid><pubDate>Mon, 01 Jun 2009 19:36:00 +0000</pubDate><atom:updated>2009-06-01T21:40:48.731+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips</category><title>En simpel sökgadget för Blogger</title><description>Idag kom den enligt mig efterlängtade gadgeten för Blogger som jag placerat högst upp i högerspalten. Du söker helt enkelt via sidpanelen och en ruta i toppen av min blogg kommer upp och visar relevanta inlägg på bloggen.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://googleblog.blogspot.com/2009/06/blog-search-and-beyond.html&quot;&gt;Läs mer i Google&#39;s blogg&lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/06/en-simpel-sokgadget-for-blogger.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-7523621651936552291</guid><pubDate>Mon, 01 Jun 2009 14:36:00 +0000</pubDate><atom:updated>2009-06-01T21:36:05.455+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Nyheter</category><title>Joe Labero i Simrishamn</title><description>Såg &lt;span style=&quot;font-weight: bold;&quot;&gt;Joe Labero i Simrishamn igår&lt;/span&gt;. Enligt rykte var där 1400 personer i publiken vilket i så fall motsvarar 1/14-del av hela Simrishamns kommuns befolkning.&lt;br /&gt;En riktigt bra show bjöd Labero på i alla fall! (även om skämten som han varvade med var lite föråldrade xD)</description><link>http://joolzblogg.blogspot.com/2009/06/joe-labero-i-simrishamn.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-5087539349330274168</guid><pubDate>Sun, 31 May 2009 09:08:00 +0000</pubDate><atom:updated>2009-06-01T21:35:43.162+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Blogger</category><category domain="http://www.blogger.com/atom/ns#">Tips</category><title>Bloggen hoppar i PageRank</title><description>Denna blogg har tidigare haft en PageRank på noll men nu helt plötsligt stiger &lt;span style=&quot;font-weight: bold;&quot;&gt;PageRank upp till två&lt;/span&gt; på bara en dag. Glad överraskning! :)&lt;br /&gt;&lt;br /&gt;Just nu: &lt;a href=&quot;http://24counter.com/&quot;&gt;&lt;img alt=&quot;live google page rank widget&quot; src=&quot;http://24counter.com/gpr.php&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.din-it-kunskap.com/2009/01/01/a-sa-borjas-det-nya-aret-med-pagerank-uppdateringar/&quot;&gt;Läs mer om PageRank här&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.prchecker.info/check_page_rank.php&quot;&gt;Kolla en sidas PageRank här&lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/05/bloggen-hoppar-i-pagerank.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-4428856737088183743</guid><pubDate>Fri, 29 May 2009 18:24:00 +0000</pubDate><atom:updated>2009-06-01T21:33:37.465+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Programtips</category><category domain="http://www.blogger.com/atom/ns#">VirtualBox</category><category domain="http://www.blogger.com/atom/ns#">Windows 7</category><title>Windows 7 RC på VirtualBox</title><description>&lt;a href=&quot;http://joolzblogg.blogspot.com/2009/01/windows-7-p-virtualbox.html&quot;&gt;Nu har jag kört &lt;/a&gt;&lt;a href=&quot;http://joolzblogg.blogspot.com/2009/01/windows-7-p-virtualbox.html&quot;&gt;Windows 7&lt;/a&gt;&lt;a href=&quot;http://joolzblogg.blogspot.com/2009/01/windows-7-p-virtualbox.html&quot;&gt; i ett bra tag&lt;/a&gt; (både &lt;a href=&quot;http://www.microsoft.com/windows/windows-7/&quot;&gt;Windows 7&lt;/a&gt; engelsk beta och Windows 7 svensk RC). Jag kan bara säga en sak: jag älskar Windows igen! :)&lt;br /&gt;Massor av småfinesser som jag har stört mig på i Vista är fixade. Simpelheten, enkelheten. Nedan följer några skärmdumpar.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;Svensk version av Windows 7 på VirtualBox. &quot;Den här datorn&quot; visas nedan. &lt;/span&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVgTWyQ0qgnKziA41uK4CYFDv12L84JUIGP7cB8AeG9NHhodHDvSyrtZjI2ox9ty-tGhyphenhyphena7KGdWorFJPagoopq6OOaEQ_yV8IeDpvx6BlS34H-zN8NnA2UZ-iKMxbmxYdCkH0qtO_LnUY/s1600-h/Windows+7+RC+svenska+Swedish+on+p%C3%A5+i+Sun+VirtualBox.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 305px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVgTWyQ0qgnKziA41uK4CYFDv12L84JUIGP7cB8AeG9NHhodHDvSyrtZjI2ox9ty-tGhyphenhyphena7KGdWorFJPagoopq6OOaEQ_yV8IeDpvx6BlS34H-zN8NnA2UZ-iKMxbmxYdCkH0qtO_LnUY/s400/Windows+7+RC+svenska+Swedish+on+p%C3%A5+i+Sun+VirtualBox.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5341314826170413394&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&quot;Inloggningsskärmen&quot;.&lt;/span&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG67nywJDMKsGNmW3Ki7ATmz6HTO8D2EDok28M0l5HJL-YmHIgAfFnbGVO41gYtNT0abs0AF9ysK9yciEZiN3g7r-SsX-vekHTzx6hG3atCRzFSfMwogFzAUOaIY_fMmkmLtHQXxZkYJU/s1600-h/Windows+7+RC+svenska+Swedish+on+p%C3%A5+i+Sun%27s+VirtualBox.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 305px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG67nywJDMKsGNmW3Ki7ATmz6HTO8D2EDok28M0l5HJL-YmHIgAfFnbGVO41gYtNT0abs0AF9ysK9yciEZiN3g7r-SsX-vekHTzx6hG3atCRzFSfMwogFzAUOaIY_fMmkmLtHQXxZkYJU/s400/Windows+7+RC+svenska+Swedish+on+p%C3%A5+i+Sun%27s+VirtualBox.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5341314891122841570&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/05/windows-7-rc-pa-virtualbox.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVgTWyQ0qgnKziA41uK4CYFDv12L84JUIGP7cB8AeG9NHhodHDvSyrtZjI2ox9ty-tGhyphenhyphena7KGdWorFJPagoopq6OOaEQ_yV8IeDpvx6BlS34H-zN8NnA2UZ-iKMxbmxYdCkH0qtO_LnUY/s72-c/Windows+7+RC+svenska+Swedish+on+p%C3%A5+i+Sun+VirtualBox.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-5362770489479440713</guid><pubDate>Tue, 26 May 2009 18:04:00 +0000</pubDate><atom:updated>2009-05-26T20:09:41.946+02:00</atom:updated><title>Booom! det åskar</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://s3.amazonaws.com/ospimage/Lightning_over_Grenaa_%28Denmark%29_03-05-2005.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px; height: 112px;&quot; src=&quot;http://s3.amazonaws.com/ospimage/Lightning_over_Grenaa_%28Denmark%29_03-05-2005.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Just nu åskar det för femte gången i år här på Österlen. Förra året åskade det nästan inget, i år kommer all åska direkt.</description><link>http://joolzblogg.blogspot.com/2009/05/booom-det-askar.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-1180017105187565886</guid><pubDate>Tue, 26 May 2009 14:10:00 +0000</pubDate><atom:updated>2009-06-01T21:43:34.002+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Länktips</category><category domain="http://www.blogger.com/atom/ns#">Programtips</category><title>Webbläsare som liknar Google Chrome</title><description>Eftersom att Google Chrome är skiven med öppen källkod får koden användas till andra webbläsare också. En variant heter &lt;span style=&quot;font-weight: bold;&quot;&gt;SRWare Iron&lt;/span&gt;. Skillnaderna mellan &lt;a href=&quot;http://www.srware.net/en/software_srware_iron.php&quot;&gt;&quot;&lt;span class=&quot;news_überschrift&quot;&gt;SRWare Iron: The Browser of the future&quot; &lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;news_überschrift&quot;&gt;och Goole Chrome är faktiskt väldigt små men det finns en enligt många stor fördel; inga konstiga licenser som du måste skriva på innan installering (om att Google får samla upp &quot;privat&quot; statistik och liknande). &lt;/span&gt;Du kan helt  surfa fritt utan att storebror Google vakar över dig.&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;news_überschrift&quot;&gt;Webbläsaren uppdateras ständigt i enlighet med Google Chrome&#39;s uppdateringar. Tyvärr finns inte webbläsaren på svenska än.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Uppdatering: &lt;/span&gt;Tar tillbaka det om att webbläsaren inte finns på svenska. Kom i senaste uppdateringen.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;SRWare Iron 2.0 (övre) och Google Chrome 2.0 (nedre)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibRwXTDrnAbWUSnTU8GboijozKcWZKKiCbZd-0_ZH98nTCrBplWcvKJI8kh2ruu1O7SdxEqUM7EU3xM27h7b4C6h8UavluwoG_-bXVe1Dd_IJFo9NxTt9U6DPclTzNfVPJrTm2zB_tNZg/s1600-h/Google+Search+in+SRWare+Iron.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 242px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibRwXTDrnAbWUSnTU8GboijozKcWZKKiCbZd-0_ZH98nTCrBplWcvKJI8kh2ruu1O7SdxEqUM7EU3xM27h7b4C6h8UavluwoG_-bXVe1Dd_IJFo9NxTt9U6DPclTzNfVPJrTm2zB_tNZg/s400/Google+Search+in+SRWare+Iron.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5340139646237921138&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiD4-0RTZbprpxW3xh6ysWtnGB1zDnhtpIANs9_cIVMVXa1LY7sp8EkezV88EXOGzk1yiv6RYp9hy_jfEV-gv1igLmWAZ2zkzXOjSqHfRzL1afyrHfaeiPAEKWBYyQlGL2170WOvi2Ezs/s1600-h/Google+Search+in+Google+Chrome.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 242px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiD4-0RTZbprpxW3xh6ysWtnGB1zDnhtpIANs9_cIVMVXa1LY7sp8EkezV88EXOGzk1yiv6RYp9hy_jfEV-gv1igLmWAZ2zkzXOjSqHfRzL1afyrHfaeiPAEKWBYyQlGL2170WOvi2Ezs/s400/Google+Search+in+Google+Chrome.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5340139383611983874&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;a href=&quot;http://www.srware.net/en/software_srware_iron.php&quot;&gt;&lt;/a&gt;&lt;span class=&quot;news_überschrift&quot;&gt;&lt;b&gt;&lt;/b&gt;&lt;/span&gt;</description><link>http://joolzblogg.blogspot.com/2009/05/webblasare-som-liknar-google-chrome.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibRwXTDrnAbWUSnTU8GboijozKcWZKKiCbZd-0_ZH98nTCrBplWcvKJI8kh2ruu1O7SdxEqUM7EU3xM27h7b4C6h8UavluwoG_-bXVe1Dd_IJFo9NxTt9U6DPclTzNfVPJrTm2zB_tNZg/s72-c/Google+Search+in+SRWare+Iron.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-26747116912225976</guid><pubDate>Tue, 26 May 2009 14:04:00 +0000</pubDate><atom:updated>2009-05-26T16:09:32.473+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Blogger</category><title>HTML-koden nollställs vid mallbyte</title><description>Varje gång man byter mall (utseende) här i Blogger så ersätts ens egna tillägg i HTML-koden. Exempelvis mina statistikverktyg Google Analytics och Site Meter. Bara att lägga till igen men nu har jag missat en månads statistik.</description><link>http://joolzblogg.blogspot.com/2009/05/html-koden-nollstalls-vid-mallbyte.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-7297810212998980471</guid><pubDate>Mon, 18 May 2009 20:06:00 +0000</pubDate><atom:updated>2009-07-26T10:46:15.294+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Länktips</category><title>MajorGeeks itu?</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8pxLMWBqK_Anua4yIb12inXWlpLMULKeycOTVGfLJaTdVBc8XocliKXA0c29llr7NTveCnbCcElx8sEXwfI4oO69pvaSoTkDK78wvMwcLSpUgTVyqCKrSYWv0mQFgM1RkAPgCMCVCr6U/s1600-h/Majorgeeks.jpg&quot;&gt;&lt;img tooltip=&quot;linkalert-tip&quot; style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 242px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8pxLMWBqK_Anua4yIb12inXWlpLMULKeycOTVGfLJaTdVBc8XocliKXA0c29llr7NTveCnbCcElx8sEXwfI4oO69pvaSoTkDK78wvMwcLSpUgTVyqCKrSYWv0mQFgM1RkAPgCMCVCr6U/s400/Majorgeeks.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5337257341242335298&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Vad har hänt med &lt;a href=&quot;http://majorgeeks.com/&quot;&gt;MajorGeeks.com&lt;/a&gt;? Sidan verkar itu, men säger själv något annat. Skumt.&lt;br /&gt;&lt;br /&gt;What have happened with &lt;a href=&quot;http://majorgeeks.com/&quot;&gt;MajorGeeks.com&lt;/a&gt;? Weird.&lt;br /&gt;&lt;br /&gt;Was hat mit &lt;a tooltip=&quot;linkalert-tip&quot; href=&quot;http://majorgeeks.com/&quot;&gt;MajorGeeks.com&lt;/a&gt; passiert?&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;br /&gt;(Multinatinellt inlägg) :)&lt;br /&gt;&lt;/span&gt;</description><link>http://joolzblogg.blogspot.com/2009/05/majorgeeks-itu.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8pxLMWBqK_Anua4yIb12inXWlpLMULKeycOTVGfLJaTdVBc8XocliKXA0c29llr7NTveCnbCcElx8sEXwfI4oO69pvaSoTkDK78wvMwcLSpUgTVyqCKrSYWv0mQFgM1RkAPgCMCVCr6U/s72-c/Majorgeeks.jpg" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-4827777293303668675</guid><pubDate>Wed, 29 Apr 2009 18:39:00 +0000</pubDate><atom:updated>2009-05-19T16:32:36.322+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Länktips</category><title>Flash Element TD 1 och 2</title><description>Tråkigt under valborg? Spela dessa &lt;a href=&quot;http://sv.wikipedia.org/wiki/Wc3&quot;&gt;WC3&lt;/a&gt;-liknande spel.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.novelconcepts.co.uk/FlashElementTD/&quot;&gt;# Flash Element TD&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.novelconcepts.co.uk/FlashElementTD2/&quot;&gt;# Flash Element TD 2&lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/04/flash-element-td-1-och-2.html</link><author>noreply@blogger.com (Oliver)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7754040094503242655.post-1276829708336381934</guid><pubDate>Sun, 15 Mar 2009 16:09:00 +0000</pubDate><atom:updated>2009-03-15T21:46:46.094+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Crossloop</category><category domain="http://www.blogger.com/atom/ns#">Fjärrhjälp</category><category domain="http://www.blogger.com/atom/ns#">Programtips</category><title>CrossLoop - fjärrhjälp för Windows!</title><description>&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;a href=&quot;http://windowshelp.microsoft.com/Windows/sv-SE/help/398b5eda-aa7f-4078-94c5-1519b697bfa01053.mspx&quot;&gt;Windows inbyggda Fjärrhjälp &lt;/a&gt;är dålig, eller&lt;/span&gt; föresten, inte bara dålig utan sämst. (&lt;a href=&quot;http://support.microsoft.com/kb/843006/sv&quot;&gt;Läs vad fjärrhjälp är här&lt;/a&gt;.) Att ens försöka komma igång med tjänsten kan ta lång tid, och när du väl lyckas så kommer du fram till att den inte fungerar.&lt;br /&gt;&lt;br /&gt;Som till det mesta finns det faktiskt ett annat alternativ även om det är lite svårt att hitta via Google. Istället för att &lt;a href=&quot;http://www.google.se/search?hl=sv&amp;amp;q=hj%C3%A4lp+windows+fj%C3%A4rrhj%C3%A4lp&amp;amp;meta=&quot;&gt;försöka förstå sig på tjän&lt;/a&gt;&lt;a href=&quot;http://www.google.se/search?hl=sv&amp;amp;q=hj%C3%A4lp+windows+fj%C3%A4rrhj%C3%A4lp&amp;amp;meta=&quot;&gt;sten &lt;/a&gt;byt till detta 1000 gånger mer lättanvändare alternativ.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.crossloop.com/&quot;&gt;&lt;strong&gt;CrossLoop&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; är som en skänk från ovan när man känner sig nere &lt;/strong&gt;&lt;strong&gt;efter många misslyckade fjärrhjälps-försök.&lt;/strong&gt; Efter installationen av det lilla grönvita programmet så visas en kod. Denna kod slumpas fram varenda gång du startar programmet. Be din vän som vill fjärrstyra din dator att installera och få en egen kod. Den som vill ha hjälp klickar nu på fliken Dela och väntar på att din vän fyller i din kod i sitt program &lt;em&gt;(din framslumpade kod som du skickat t.ex. över WLM/MSN)&lt;/em&gt; i fältet Anslut och klickar just Anslut. Personen kan nu styra din dator!&lt;br /&gt;&lt;br /&gt;Fönstret som du styr via visar en bild av din väns dator. Din skrivbordsbakgrund kommer tillfälligt bli svart för att förbättra överföringshastigheten, men den kommer tillbaka efter att du avslutat CrossLoop. Via fjärrhjälp överförs inte ljud och därför är det kanske bra att kompletera tjänsten med Ventrilo/Skype.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;En sak att komma ihåg är att medlemskap på siten INTE behövs för att kunna använda CrossLoop.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Andra funktioner i CrossLoop:&lt;br /&gt;* Smart filöverföring.&lt;br /&gt;* (&lt;em&gt;För medlemmar.) &lt;/em&gt;Community där folk hjälper dig med problemen direkt via fjärrhjälp. Dock tycker jag inte att communityn var något speciellt. Ofta tar &quot;hjälparna&quot; betalt och det är svårt att hitta folk som kan lösa just dina problem. Bli hellre medlem på ett forum.&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;&lt;strong&gt;&lt;em&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;&lt;strong&gt;&lt;em&gt;&lt;span style=&quot;color: rgb(0, 0, 0); font-weight: normal;&quot;&gt;CrossLoop på Windows XP - mycket lättanvänt&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAUANol9C88awKE1Fl7ApVANv8y6A_IduDE_doG0LbOcC9HNJ1F4lDKsK_iR74qAcfnATj_O5R26m9iqNakWBlBQscv5lgC7QQrWo-c-3XZpfdm0OHkG5Xq9JKbilSuUwEgmrC51RY3vc/s1600-h/CrossLoop+on+XP.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 337px; height: 400px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAUANol9C88awKE1Fl7ApVANv8y6A_IduDE_doG0LbOcC9HNJ1F4lDKsK_iR74qAcfnATj_O5R26m9iqNakWBlBQscv5lgC7QQrWo-c-3XZpfdm0OHkG5Xq9JKbilSuUwEgmrC51RY3vc/s400/CrossLoop+on+XP.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5313466360574205874&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhw-fNH4t9RR6YbGXMmyAh0VV4jwr38XEl4HnEyQ2JIUMZJ-lpudrPHpOD0QP0y_S_tr3KOsukoPzzOHmKK-Wi6tdoGMOhT0V8chDum7_uaiEo7ZFL-CMVjSf71z2BbH4UCLagyUnYdrFY/s1600-h/CrossLoop+on+XP+%282%29.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 268px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhw-fNH4t9RR6YbGXMmyAh0VV4jwr38XEl4HnEyQ2JIUMZJ-lpudrPHpOD0QP0y_S_tr3KOsukoPzzOHmKK-Wi6tdoGMOhT0V8chDum7_uaiEo7ZFL-CMVjSf71z2BbH4UCLagyUnYdrFY/s320/CrossLoop+on+XP+%282%29.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5313466458432315586&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</description><link>http://joolzblogg.blogspot.com/2009/03/crossloop-fjarrhjalp-for-windows.html</link><author>noreply@blogger.com (Oliver)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAUANol9C88awKE1Fl7ApVANv8y6A_IduDE_doG0LbOcC9HNJ1F4lDKsK_iR74qAcfnATj_O5R26m9iqNakWBlBQscv5lgC7QQrWo-c-3XZpfdm0OHkG5Xq9JKbilSuUwEgmrC51RY3vc/s72-c/CrossLoop+on+XP.jpg" height="72" width="72"/><thr:total>0</thr:total></item></channel></rss>