krainaksiazek introduction to computer programming using java 20054238

- znaleziono 92 produkty w 6 sklepach

VERT X IN ACTION JULIEN PONGE NOWA - 2862565082

326,29 zł

VERT X IN ACTION JULIEN PONGE NOWA WYDAWCA

Podręczniki, artykuły szkolne > Podręczniki do szkół podst. i średnich

Vert.x in Action   Intended for intermediate Java developers familiar with web development, networked services, and enterprise Java frameworks like Spring or Java EE. No prior experience in asynchronous or reactive programming is required.   As enterprise applications become larger and more distributed, new architectural approaches like reactive designs, microservices, and event streams are required knowledge. The Vert.x framework provides a mature, rock-solid toolkit for building reactive applications using Java, Kotlin, or Scala.   Vert.x in Action  teaches you to build responsive, resilient, and scalable JVM applications with Vert.x using well-established reactive design patterns.   about the technology Vert.x is a mature framework for building reactive applications on the JVM. Designed to handle asynchronous communication effortlessly, Vert.x permits the fewest number of concurrent threads possible. As a result, you automatically get increased scalability, resource efficiency, and dependability, which are big wins for any distributed system. Vert.x

Sklep: ksiazkitanie.pl

Symbolic C++ - 2877966746

285,10 zł

Symbolic C++ Springer

Książki / Literatura obcojęzyczna

Symbolic C++: An Introduction to Computer Algebra Using Object-OrientedProgramming provides a concise introduction to C++ and object-orientedprogramming, using a step-by-step construction of a new object-orienteddesigned computer algebra system - Symbolic C++. It shows howobject-oriented programming can be used to implement a symbolic algebrasystem and how this can then be applied to different areas in mathematicsand physics.This second revised edition:- Explains the new powerful classes that have been added to SymbolicC++. Includes the Standard Template Library. Extends the Java section. Contains useful classes in scientific computation. Contains extended coverage of Maple, Mathematica, Reduce and MuPAD.

Sklep: Libristo.pl

Learning to Program with MATLAB - Building GUI Tools, Second Edition - 2873612929

552,52 zł

Learning to Program with MATLAB - Building GUI Tools, Second Edition John Wiley and Sons Ltd

Książki / Literatura obcojęzyczna

Learning to Program with MATLABIntroductory text integrating science, mathematics, and engineering to give a basic understanding of the fundamentals of computer programming with MATLABLearning to Program with MATLAB: Building GUI Tools, Second Edition serves as a compact introduction to computer programming using the MATLAB language, covering elements of both program and graphical user interface (GUI) design to enable readers to create computer programs just like the ones they are accustomed to interacting with. Rather than being encyclopedic in scope, the goal of the text is to describe what users will find most useful and point to other features. Descriptions and examples of some of the most useful functions are included throughout, particularly with regards to engineering and science applications. The work also includes updated videos and problem solutions on an instructor companion website.The first edition of Learning to Program with MATLAB employed the MATLAB graphical user interface design environment (GUIDE) to develop the GUI tools. The second edition is based on the new and improved App Designer program, which has supplanted GUIDE. This edition includes:* Core concepts of computer programming using MATLAB, such as arrays, loops, functions, and basic data structures* How to write your own MATLAB functions, covering topics such as local workspaces, multiple outputs, function files, and other functional forms* The new string class and table class, some new features of function arguments, and re-written sections for building GUI tools with App Designer* Syntax for graphics and App Designer features, plus examples demonstrating the new way to handle string informationStarting with the basics and building up to an emphasis on GUI tools, Learning to Program with MATLAB is a comprehensive introduction to programming in a robust and multipurpose language, making it an ideal classroom resource for both students and instructors in related programs of study.

Sklep: Libristo.pl

Beginning PHP 5.3 - 2878320819

159,08 zł

Beginning PHP 5.3 John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

This book is intended for anyone starting out with PHP programming. If you've previously worked in another programming language such as Java, C#, or Perl, you'll probably pick up the concepts in the earlier chapters quickly; however, the book assumes no prior experience of programming or of building Web applications. That said, because PHP is primarily a Web technology, it will help if you have at least some knowledge of other Web technologies, particularly HTML and CSS. Many Web applications make use of a database to store data, and this book contains three chapters on working with MySQL databases. Once again, if you're already familiar with databases in general -- and MySQL in particular -- you'll be able to fly through these chapters. However, even if you've never touched a database before in your life, you should still be able to pick up a working knowledge by reading through these chapters. What This Book Covers This book gives you a broad understanding of the PHP language and its associated technologies.You explore a wide range of topics, including: installing a copy of the PHP engine on Ubuntu Linux, Windows, and Mac OS X;other ways you can install or use PHP; how to write a simple PHP script. basic PHP language concepts. variables, data types, operators, expressions, and constants. how to change the flow of your scripts by creating decisions and loops. if , else , and switch statements; the ternary operator; and the do , while , for , break , and continue statements. how to nest loops, and how to mix decisions and looping with blocks of HTML. PHP's handling of strings, or sequences of characters; how to create strings; how to retrieve characters from a string; and how to manipulate strings with functions such as strlen() , substr() , strstr() , strpos() , str-replace() , and printf() , to name but a few. arrays -- variables that can hold multiple values. You learn the difference between indexed and associative arrays, and find out how to create arrays and access their individual elements; array manipulation, including functions such as print-r() , array-slice() , count() , sort() , array-merge() , and list() .You also learn how to create foreach loops, as well as how to work with multidimensional arrays. functions -- blocks of code that you can use again and again. You look at how to call built-in functions, and how to work with variable functions. You also study how to create your own functions, including defining parameters, returning values, understanding scope, and using anonymous functions. Other function-related topics such as references and recursion are also explored. object-oriented programming. You look at the advantages of an object-oriented approach, and learn how to build classes, properties, and methods, and how to create and use objects. You also explore more advanced topics such as overloading, inheritance, interfaces, constructors and destructors, autoloading, and namespaces. how to use PHP to create interactive Web forms. You learn how to create HTML forms, how to capture form data in PHP, and how to use PHP to generate dynamic forms. You also explore file upload forms and page redirection. how to preserve an application's state between page views. You explore three different strategies: query strings, cookies, and PHP sessions. Includes an example user login system.PHP's file and directory handling functions. You learn how to open and close files; how to find out more information about a file; how to read from and write to files; how to work with file permissions; how to copy, rename, and delete files; and how to manipulate directories.Simple text editor as an example. databases in general and MySQL in particular, and how to work with MySQL databases using PHP. You learn some database and SQL theory; look at how to connect to MySQL from PHP; and study how to retrieve, insert, update, and delete data in a MySQL database. PEAR, the PHP Extension and Application Repository. It's a large collection of reusable code modules that can really help to speed up your application development. You look at how to install and use PEAR packages, and explore three useful packages: Net-UserAgent-Detect , HTML-Table , and HTML-QuickForm . ways that your PHP applications can interact with the outside world.A detailed look at date and time handling, including various useful built-in date functions, as well as the DateTime and DateTimeZone classes.Also how to work closely with HTTP request and response headers, how to retrieve Web server information, and how to send email from within your scripts. using PHP to generate graphics on the fly. You study some computer graphics fundamentals, then look at how to create new images, as well as modify existing images. Along the way you explore colors, drawing functions, image formats, transparency, opacity, and generating text within images. regular expressions. These clever pattern-matching tools let you search for very specific patterns of text within strings; regular expression syntax, how to use PHP's regular expression functions to search for and replace patterns of text. Lots of examples are included to make the concepts clear. XML -- eXtensible Markup Language -- and how to manipulate XML from within your PHP scripts. You learn about XML and its uses, and look at various ways to read and write XML with PHP, including XML Parser, the XML DOM extension, and SimpleXML. You also take a brief look at XML stylesheets, including XSL and XSLT. how to configure PHP, and all the configuration directives available. alternative databases to MySQL that are supported by PHP. using PHP to write command-line scripts, further enhancing the power and flexibility of your applications.Also, as you'd imagine, this book covers the new features added to PHP in version 5.3. However, if you're still using an older version of PHP, don't panic -- the vast majority of the book applies to all versions of PHP.

Sklep: Libristo.pl

Database Design and Implementation - 2873787701

323,99 zł

Database Design and Implementation Springer Nature Switzerland AG

Książki / Literatura obcojęzyczna

This textbook examines database systems from the viewpoint of a software developer. This perspective makes it possible to investigate why database systems are the way they are. It is of course important to be able to write queries, but it is equally important to know how they are processed. We e.g. don't want to just use JDBC; we also want to know why the API contains the classes and methods that it does. We need a sense of how hard is it to write a disk cache or logging facility. And what exactly is a database driver, anyway? The first two chapters provide a brief overview of database systems and their use. Chapter 1 discusses the purpose and features of a database system and introduces the Derby and SimpleDB systems. Chapter 2 explains how to write a database application using Java. It presents the basics of JDBC, which is the fundamental API for Java programs that interact with a database. In turn, Chapters 3-11 examine the internals of a typical database engine. Each chapter covers a different database component, starting with the lowest level of abstraction (the disk and file manager) and ending with the highest (the JDBC client interface); further, the respective chapter explains the main issues concerning the component, and considers possible design decisions. As a result, the reader can see exactly what services each component provides and how it interacts with the other components in the system. By the end of this part, s/he will have witnessed the gradual development of a simple but completely functional system. The remaining four chapters then focus on efficient query processing, and focus on the sophisticated techniques and algorithms that can replace the simple design choices described earlier. Topics include indexing, sorting, intelligent buffer usage, and query optimization. This text is intended for upper-level undergraduate or beginning graduate courses in Computer Science. It assumes that the reader is comfortable with basic Java programming; advanced Java concepts (such as RMI and JDBC) are fully explained in the text. The respective chapters are complemented by "end-of-chapter readings" that discuss interesting ideas and research directions that went unmentioned in the text, and provide references to relevant web pages, research articles, reference manuals, and books. Conceptual and programming exercises are also included at the end of each chapter. Students can apply their conceptual knowledge by examining the SimpleDB (a simple but fully functional database system created by the author and provided online) code and modifying it.

Sklep: Libristo.pl

Spalona Żywcem Wyd. Kieszonkowe - Souad - 2854922647

11,15 zł

Spalona Żywcem Wyd. Kieszonkowe - Souad

Książki & Multimedia > Książki

Opis - Pierwsze na świecie świadectwo ofiary zbrodni honorowej. Miała siedemnaście lat i zakochała się: zhańbiła rodzinę. Więc rodzina wydała na nią wyrok śmierci... Pokochała go pierwszą miłością. Myślała, że się z nią ożeni. Ale ukochany zniknął, a ona odkryła, że jest w ciąży. A w jej świecie to najcięższa zbrodnia... W zapomnianej przez Boga wiosce w Cisjordanii kobiety są warte mniej niż zwierzęta domowe. Tu mężczyzna jest panem życia i śmierci żony, córki, siostry. Brat może bezkarnie zabić siostrę, matka - córkę, kolejną bezużyteczną dziewczynkę, jaka się urodzi. Tu kobiecie odbiera się godność, a nawet życie zgodnie z odwiecznym obyczajem i uświęconą tradycją. A śmierć jest karą dla dziewczyny, która zhańbi rodzinę. Tak jak Souad. Wyrok wydaje jej ojciec. Szwagier dokonuje egzekucji. Oblewa Souad benzyną i podpala... SOUAD przeżyła - cudem, ale rodzina usiłowała zabić ją nawet w szpitalu. Na zawsze jednak pozostanie straszliwie okaleczona - na ciele i duszy. I wciąż musi się ukrywać; dopóki żyje, jej rodzinę okrywa hańba. Spalona żywcem, opublikowana pod pseudonimem szokująca opowieść o piekle, jakim było jej dzieciństwo i młodość, stała się międzynarodowym bestsellerem. Wydana w 37 w krajach książka przerywa tabu milczenia wobec istniejącej nadal w krajach muzułmańskich barbarzyńskiej tradycji. Nieludzkiego obyczaju, prawa mężczyzn, na mocy którego co najmniej pięć tysięcy kobiet pada co roku ofiarą zbrodni honorowej. Nazwa - Spalona Żywcem Wyd. Kieszonkowe Autor - Souad Oprawa - Miękka Wydawca - Amber Kod ISBN - 9788324159406 Kod EAN - 9788324159406 Wydanie - 1 Rok wydania - 2016 Tłumacz - 31182,maria rostworowska; Format - 110 x 175 x 14 Ilość stron - 224 Podatek VAT - 5% Premiera - 2016-06-23

Sklep: InBook.pl

Guide to Data Structures - 2867130785

360,97 zł

Guide to Data Structures Springer International Publishing AG

Książki / Literatura obcojęzyczna

This accessible and engaging textbook/guide provides a concise introduction to data structures and associated algorithms. Emphasis is placed on the fundamentals of data structures, enabling the reader to quickly learn the key concepts, and providing a strong foundation for later studies of more complex topics. The coverage includes discussions on stacks, queues, lists, (using both arrays and links), sorting, and elementary binary trees, heaps, and hashing. This content is also a natural continuation from the material provided in the separate Springer title Guide to Java by the same authors.Topics and features: reviews the preliminary concepts, and introduces stacks and queues using arrays, along with a discussion of array-based lists; examines linked lists, the implementation of stacks and queues using references, binary trees, a range of varied sorting techniques, heaps, and hashing; presents both primitive and generic data types in each chapter, and makes use of contour diagrams to illustrate object-oriented concepts; includes chapter summaries, and asks the reader questions to help them interact with the material; contains numerous examples and illustrations, and one or more complete program in every chapter; provides exercises at the end of each chapter, as well as solutions to selected exercises, and a glossary of important terms.This clearly-written work is an ideal classroom text for a second semester course in programming using the Java programming language, in preparation for a subsequent advanced course in data structures and algorithms. The book is also eminently suitable as a self-study guide in either academe or industry.

Sklep: Libristo.pl

Oracle PL/SQL Developer's Workbook - 2856487623

273,64 zł

Oracle PL/SQL Developer's Workbook O'Reilly Media

Książki / Literatura obcojęzyczna

However excellent they are, most computer books are inherently passive--readers simply take in text without having any opportunity to react to it. The Oracle PL/SQL Developer's Workbook is a different kind of animal! It's designed to engage you actively, to get you solving programming problems immediately, and to help you apply what you've learned about PL/SQL--and in the process deepen your knowledge of the language. By tackling the exercises in this workbook, you'll find yourself moving more rapidly along the learning curve to join the growing ranks of PL/SQL experts. The Oracle PL/SQL Developer's Workbook is a companion to Steven Feuerstein's bestselling Oracle PL/SQL Programming and his other PL/SQL books from O'Reilly. It contains a carefully constructed set of problems and solutions that will test your language skills and help you become a better developer--both with PL/SQL and with other languages. Exercises are provided at three levels: beginner, intermediate, and expert. The workbook exercises cover all the major features of PL/SQL, including those new to Oracle8i (e.g., Java and web features, autonomous transactions, and bulk binds).You'll find chapters on: *Basic language elements--variables, naming, loops, conditional and sequential control, exception handling, and records. *Data structures--index-by tables, nested tables, variables arrays (VARRAYs), and object technology. *Database interaction--cursors, DML and transaction management, cursor variables, and native dynamic SQL *Program construction--procedures, functions, blocks, packages, database triggers, and calling PL/SQL functions in SQL. *Built-in functionality--the character, date, conversion, numeric, and miscellaneous functions, and the DBMS_SQL, DBMS_PIPE, DBMS_OUTPUT, UTL_FILE, and DBMS_JOB built-in packages. *Miscellaneous topics--using Java with PL/SQL, external programs, PL/SQL web development, tuning PL/SQL, and PL/SQL for DBAs.

Sklep: Libristo.pl

Art Of Assembly Language, 2nd Edition - 2878781639

238,17 zł

Art Of Assembly Language, 2nd Edition No Starch Press,US

Książki / Literatura obcojęzyczna

Assembly is a low-level programming language that's one step above a computer's native machine language. Although assembly language is commonly used for writing device drivers, emulators, and video games, many programmers find its somewhat unfriendly syntax intimidating to learn and use. Since 1996, Randall Hyde's The Art of Assembly Language has provided a comprehensive, plain-English, and patient introduction to 32-bit x86 assembly for non-assembly programmers. Hyde's primary teaching tool, High Level Assembler (or HLA), incorporates many of the features found in high-level languages (like C, C++, and Java) to help you quickly grasp basic assembly concepts. HLA lets you write true low-level code while enjoying the benefits of high-level language programming. As you read The Art of Assembly Language, you'll learn the low-level theory fundamental to computer science and turn that understanding into real, functional code.You'll learn how to: * Edit, compile, and run an HLA program * Declare and use constants, scalar variables, pointers, arrays, structures, unions, and namespaces * Translate arithmetic expressions (integer and floating point) * Convert high-level control structures This much anticipated second edition of The Art of Assembly Language has been updated to reflect recent changes to HLA and to support Linux, Mac OS X, and FreeBSD. Whether you're new to programming or you have experience with high-level languages, The Art of Assembly Language, 2nd Edition is your essential guide to learning this complex, low-level language.

Sklep: Libristo.pl

Specifying Software - 2866874006

298,16 zł

Specifying Software Cambridge University Press

Książki / Literatura obcojęzyczna

Provides an innovative hands-on introduction to techniques for specifying the behaviour of software components. It is primarily intended for use as a text book for a course in the 2nd or 3rd year of Computer Science and Computer Engineering programs, but it is also suitable for self-study. Using this book will help the reader improve programming skills and gain a sound foundation and motivation for subsequent courses in advanced algorithms and data structures, software design, formal methods, compilers, programming languages, and theory. The presentation is based on numerous examples and case studies appropriate to the level of programming expertise of the intended readership. The main topics covered are techniques for using programmer-friendly assertional notations to specify, develop, and verify small but non-trivial algorithms and data representations, and the use of state diagrams, grammars, and regular expressions to specify and develop recognizers for formal languages.

Sklep: Libristo.pl

From COBOL to OOP - 2212826920

153,50 zł

From COBOL to OOP Morgan Kaufmann

Informatyka

Driven by the year-2000 problem, the hordes of COBOL developers experienced a renaissance, but the times when COBOL was state-of-the-art are long gone. Object-orientation, application servers, web front-ends, and relational database systems dominate the scene for new projects today. The fact remains however, that millions of lines of source code written in the structured programming language COBOL work daily on computer systems all over the world. One problem that COBOL developers have to deal with on these new projects is familiarity with object-oriented concepts. Markus Knasmüller, rich with experiences of OO projects in COBOL development teams, offers a successful introduction for the experienced COBOL programmer. A careful approach across techniques familiar to COBOL developers and discussions of current standards make this book easily accessible and understandable.*A nuts and bolts approach to introducing the experienced COBOL programmer to OOP techniques.*Written independently from any specific programming environment, and all programming examples written in both Delphi and Java. *Detailed case study describing the successful migration of 10 million lines of COBOL code to object-oriented programming.*Companion CD-ROM containing all tutorial sections of the book in PowerPoint and all sample solutions to the problems ready for compilation.

Sklep: Albertus.pl

Learn Objective-C on the Mac - 2867136069

178,27 zł

Learn Objective-C on the Mac Springer-Verlag Berlin and Heidelberg GmbH & Co....

Książki / Literatura obcojęzyczna

Learn to write apps for some of today's hottest technologies, including the iPhone and iPad (using iOS), as well as the Mac (using OS X). It starts with Objective-C, the base language on which the native iOS software development kit (SDK) and the OS X are based. Learn Objective-C on the Mac: For OS X and iOS , Second Edition updates a best selling book and is an extensive, newly updated guide to Objective-C.§§Objective-C is a powerful, object-oriented extension of C, making this update the perfect follow-up to Dave Mark's bestselling Learn C on the Mac . Whether you're an experienced C programmer or you're coming from a different language such as C++ or Java, leading Mac experts Scott Knaster and Waqar Malik show how to harness the power of Objective-C in your apps!§§A complete course on the basics of Objective-C using Apple's newest Xcode tools §An introduction to object-oriented programming §Comprehensive coverage of new topics like blocks, GCD, ARC, class extensions, as well as inheritance, composition, object initialization, categories, protocols, memory management, and organizing source files §An introduction to building user interfaces using what is called the UIKit §A primer for non-C programmers to get off the ground even faster

Sklep: Libristo.pl

Data Structures and Algorithms in Python - 2861971410

962,95 zł

Data Structures and Algorithms in Python John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Based on the authors' market leading data structures books in Java and C++, this book offers a comprehensive, definitive introduction to data structures in Python by authoritative authors. Data Structures and Algorithms in Python is the first authoritative object-oriented book available for Python data structures. Designed to provide a comprehensive introduction to data structures and algorithms, including their design, analysis, and implementation, the text will maintain the same general structure as Data Structures and Algorithms in Java and Data Structures and Algorithms in C++. Begins by discussing Python's conceptually simple syntax, which allows for a greater focus on concepts. Employs a consistent object-oriented viewpoint throughout the text. Presents each data structure using ADTs and their respective implementations and introduces important design patterns as a means to organize those implementations into classes, methods, and objects. Provides a thorough discussion on the analysis and design of fundamental data structures. Includes many helpful Python code examples, with source code provided on the website.Uses illustrations to present data structures and algorithms, as well as their analysis, in a clear, visual manner. Provides hundreds of exercises that promote creativity, help readers learn how to think like programmers, and reinforce important concepts. Contains many Python-code and pseudo-code fragments, and hundreds of exercises, which are divided into roughly 40% reinforcement exercises, 40% creativity exercises, and 20% programming projects.

Sklep: Libristo.pl

GNU Octave by Example - 2872893567

264,90 zł

GNU Octave by Example APress

Książki / Literatura obcojęzyczna

Get a quick start to learn, understand, and apply GNU Octave using a math- and programming-friendly approach. This book focuses on an end-to-end track to teach mathematical programming, data science, signal processing, and image processing with GNU Octave. GNU Octave by Example starts with an introduction to GNU Octave, a free and open-source alternative to MATLAB. Next, it explains the processes to install GNU Octave on popular operating systems such as Windows, Ubuntu, Raspberry Pi, and other platforms. Further, it covers hands-on exercises with GNU Octave exploring the basic functionality and command line in interactive mode. This is followed by covering matrices and various operations including how to read and analyze data from various sources. Moving forward, it introduces commonly used programming constructs in data visualization. It explains 2D and 3D data visualization along with data analysis. It also demonstrates the concepts related to geometry and its application with GNU Octave. It concludes with coverage of signal processing followed by image, video, and audio processing techniques. After reading this book, you will be able to write your own programs for scientific and numerical applications. What You Will Learn Understand the practical aspects of GNU Octave with math and programming-friendly abstractions Install GNU Octave on multiple platforms including Windows, Raspberry Pi, and Ubuntu Work with GNU Octave using the GUI, the command line, and Jupyter notebooks Implement 2D and 3D data visualization and analysis with GNU Octave Who This Book Is For Software engineers, data engineers, data science enthusiasts, and computer vision professionals.

Sklep: Libristo.pl

PERL Programmer's Companion - 2822224040

145,08 zł

PERL Programmer's Companion John Wiley & Sons

Medycyna > English Division

Perl The Programmera s Companion Nigel Chapman Perl is a powerful and flexible programming language. A programmer can easily put together short Perl programs to perform tasks that might otherwise require hours of development effort from a team of specialists--and ita s free! Perl is different in many ways from more conventional languages, and programmers who are used to Java, C or C++ can find its syntax and data types unusual. The Programmera s Companion is intended to show such programmers the power of Perl and to introduce them to its unique features. Clearly flagged comparisons with other languages help relate Perla s features to familiar territory. Written in a clear and approachable style, the authora s account of Perl is informed by his extensive knowledge of other programming languages. The book includes: aeo a description of new Perl5 language extensions and characteristics such as the object--oriented features aeo live, up--and--running programming examples based on real Perl scripts aeo an introduction to the use of modules which extend the power of Perl into many application areas aeo using Perl on the Web aeo pointers to Perl resources on the Web The Programmera s Companion is not exclusive to Unix users, but presents Perl as a language that can ease the programmera s burden, no matter what system it is used on. Visit our website at http://www.wiley.com/compbooks/ ??? This book is arranged in an innovative way: rather than introduce the language keyword by keyword, it introduces "template" programs that make use of Perla s neat pattern features and implicit arguments. This way, even at the beginning, you can get useful programs running rather than just printing "Hello world" various numbers of times . ??? The Programmera s Companion fills the niche for a Perl language learning book aimed at the programmer who wants a solid book, to teach the language, which (1) doesna t hand--hold too much, and (2) covers most of the more advanced features of the language.

Sklep: Ksiazki-medyczne.eu

szukaj w Kangoo krainaksiazek introduction to computer programming using java 20054238

Sklepy zlokalizowane w miastach: Warszawa, Kraków, Łódź, Wrocław, Poznań, Gdańsk, Szczecin, Bydgoszcz, Lublin, Katowice

Szukaj w sklepach lub całym serwisie

1. Sklepy z krainaksiazek introduction to computer programming using java 20054238

2. Szukaj na wszystkich stronach serwisu

t1=0.046, t2=0, t3=0, t4=0.014, t=0.046

Dla sprzedawców

copyright © 2005-2024 Sklepy24.pl  |  made by Internet Software House DOTCOM RIVER