$ SET SOURCEFORMAT"FREE" IDENTIFICATION DIVISION. PROGRAM-ID. Multiplier. DATA DIVISION. WORKING-STORAGE SECTION. 01 Num1 PIC 9 VALUE ZEROS. 01 Num2 PIC.

Презентация:



Advertisements
Похожие презентации
Standard I/O and Pipes. Standard Input and Output Linux provides three I/O channels to Programs Standard input (STDIN) - keyboard by default Standard.
Advertisements

7/23/ :59:16 AM Each slide transits to the next Automatically.Just WAIT!1 This cosine curve would now be represented as a consequence of a synchronized.
Project My sport profile. I like to watch winter sports and the Winter Olympics. But most of all I watch biathlon and figure skating in the Winter Olympics.
American values. Ukrainian values.
Copyright ® 2000 MSC.Software Results Animation S15-1 PAT301, Section 15, October 2003 SECTION 15 RESULTS ANIMATION.
UNIT 2. Introduction to Computer Programming. COM E 211: Basic Computer Programming UNIT 2. Introduction to Computer Programming Algorithm & Flowcharting.
Work with database Oracle in Java Author: Dudnik Oxana.
Work with databases in Java. JDBC Tutorial for students of universities Author: Dudnik Oxana.
Profession of a banking. Banking – the job very prestigious. That job require high qualification.
Copyright ® 2000 MSC.Software Results S6-1 PAT328 Section 6, September 2004 Copyright 2004 MSC.Software Corporation SECTION 6 PLOT SET.
Excel – is a tabular processor or system for preparing and processing the tabular forms document.
Copyright ® 2000 MSC.Software Results S17-1 PAT301, Section 17, October 2003 SECTION 17 FILE MANAGEMENT.
S11-1PAT301, Section 11, October 2003 SECTION 11 ANALYSIS SETUP.
1/13 Chapter 06- Implementing Operators in a class.
PAT312, Section 61, December 2006 S61-1 Copyright 2007 MSC.Software Corporation SECTION 61 VIEWFACTOR RESULTS AND FILES.
PAT312, Section 24, December 2006 S24-1 Copyright 2007 MSC.Software Corporation SECTION 24 RESULTS.
ABL5 - Calibration 1 RED SYSTEM ± Sensitivity ± Zero point ± Drift ± 1 point calibration ± 2 point calibration ± Status value.
Binary Arithmetic Coding System with Adaptive Probability Estimation by Virtual Sliding Window Eugeniy Belyaev Marat Gilmutdinov Andrey Turlikov.
Workshop 5-1 NAS101 Workshops Copyright 2001 MSC.Software Corporation WORKSHOP 5 Stiffened Plate Subjected to Pressure Load.
S6-1 NAS104, Section 6, March 2004 Copyright 2004 MSC.Software Corporation SECTION 6 RADIATION.
Транксрипт:

$ SET SOURCEFORMAT"FREE" IDENTIFICATION DIVISION. PROGRAM-ID. Multiplier. DATA DIVISION. WORKING-STORAGE SECTION. 01 Num1 PIC 9 VALUE ZEROS. 01 Num2 PIC 9 VALUE ZEROS. 01 Result PIC 99 VALUE ZEROS. PROCEDURE DIVISION. DISPLAY "Введите первое число : " WITH NO ADVANCING. ACCEPT Num1. DISPLAY "Введите второе число : " WITH NO ADVANCING. ACCEPT Num2. MULTIPLY Num1 BY Num2 GIVING Result. DISPLAY "Результат = ", Result. STOP RUN.