Einf Hrung In Die Programmierung Mit Modula 2


Download Einf Hrung In Die Programmierung Mit Modula 2 PDF/ePub or read online books in Mobi eBooks. Click Download or Read Online button to get Einf Hrung In Die Programmierung Mit Modula 2 book now. This website allows unlimited access to, at the time of writing, more than 1.5 million titles, including hundreds of thousands of titles in various foreign languages.

Download

Introduction to Programming with Modula-2


Introduction to Programming with Modula-2

Author: Günther Blaschek

language: en

Publisher: Springer Science & Business Media

Release Date: 2012-12-06


DOWNLOAD





This book is intended for the novice as well as for the experienced programmer who wants to learn Modula-2. We do not limit ourselves to just a description of Modula-2. Instead, we seek to familiarize the reader with the concept of algorithms and to show him/her how to implement algorithms in Modula-2. The programming language Modula-2 was developed by Niklaus Wirth (also the father of world-famous Pascal) and made public in 1978. Compared to other programming languages such as Ada, COBOL or PL/!, Modula-2 is a compact language, which makes it easy to learn. Nevertheless, Modula-2 contains all important language elements necessary for formulating complicated algorithms and for implementing the modern concepts of software engineering. Modula-2 is distinguished by a systematic structure that makes it possible to write easily readable programs. The language supports many of the principles of modern software engineering. All this makes Modula-2 a useful instrument for an introduction to the basics of programming. This textbook strives to establish a solid foundation in the techniques of programming with up-to-date methods of program development. Use of the programming language Modula-2 is reinforced with numerous hands-on exercises. This book does not presuppose any knowledge of programming, but it does require a certain ability in the realm of abstract thinking, some pleasure in problem solving, and a desire to come to terms with complex interrelationships.

Einführung in die Programmierung mit Modula-2


Einführung in die Programmierung mit Modula-2

Author: Günther Blaschek

language: de

Publisher:

Release Date: 1987


DOWNLOAD





Programmieren mit Modula-2


Programmieren mit Modula-2

Author: Jörg Puchan

language: de

Publisher: Springer-Verlag

Release Date: 2013-11-21


DOWNLOAD





Die Methode der schrittweisen Verfeinerung führte uns auf der Daten seite zu den strukturierten Datentypen und auf der Algorithmenseite zu den Prozeduren. Durch Parameterlisten werden Prozeduren zu einem flexiblen, wiederverwendbaren Konstrukt. Eine Prozedur läßt sich also, sofern sie nur allgemein genug geschrieben ist, in mehreren Pro grammen verwenden. Wiederverwendbarkeit von Prozeduren erfordert, daß keine Verände rung oder Verwendung globaler Größen vorkommt, daß alle Parame tertypen bekannt sind und daß die Prozeduren im verwendenden Programm neu übersetzt werden. Sowohl vom Schreiber der Prozedur als auch von ihrem Verwender wird also Programmierdisziplin gefordert, da eine Prozedur nicht immer unabhängig von ihrer Umgebung ist. Diese Schwächen werden durch Module beseitigt, die noch die wertvolle Eigenschaft mitbringen, die Zerlegbarkeit (Modularisierung) des Programms in einzelne, von einander unabhängige Teile zu unterstützen. Stellen wir uns vor, es soll ein größeres Softwareprojekt mit mehreren Mitarbeitern durchgeführt werden. Mit dem gegenwärtigen Kenntnis stand würde man wie folgt vorgehen: 232 Kapitel 6 • Zu Beginn eines Softwareprojekts erfolgt die Festlegung der wichtigsten Datenstrukturen, • dann werden die Teilprobleme getrennt bearbeitet (d.h. die Struk turen werden auf unterschiedliche Weise manipuliert).