Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » Rätselecke » Zahlenrätsel III

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
10.07.2006, 15:16 Uhr
xXx
Devil


1 3 2 6 4 12 8 24 ... wie gehts weiter?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
10.07.2006, 15:22 Uhr
~todes_Ampel
Gast


16?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
10.07.2006, 15:56 Uhr
xXx
Devil


du hast gegooglelt ja ist richtig... sind ja 2 Zahlenreihen drin
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
10.07.2006, 16:00 Uhr
kronos
Quotenfisch
(Operator)



Zitat von xXx:
du hast gegooglelt

Oder er kennt solche Rätsel noch aus der Grundschule :-)
--
main($)??<-$<='?'>>2?main($-!!putchar(
(("$;99M?GD??(??/x0d??/a:???;a"+'?'/4)
??($??)+'?'/3-2-1+$%2)??''?')):'?';??>
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
03.02.2007, 21:55 Uhr
xXx
Devil


Auch hierfür mal ne kleine C++ Umsetzung ^^

C++:
#include <iostream>
#include <string>
#include <sstream>

int main(void)
{
    unsigned short row_one = 1;
    unsigned short row_two = 3;
    unsigned short count_numbers = 0;

    std::cout << "Wie viele Zahlen soll die Zahlenreihe beinhalten?" << std::endl;
    std::istringstream ss;
    std::string sInput;

    do {
        std::getline(std::cin, sInput);
        ss.clear();
        ss.str(sInput);
        ss >> count_numbers;
    } while (!ss);

    count_numbers /= 2;
    std::cout << row_one << " " << row_two << " ";

    for (unsigned short n = 0; n < (count_numbers - 1); ++n)
        std::cout << (row_one *= 2) << " " << (row_two *= 2) << " ";

    std::cin.clear();
    std::cin.ignore(std::cin.rdbuf()->in_avail());
    std::cin.get();    

    return 0;
}
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ Rätselecke ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: