Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

5/23/2021 Program Summary - Program 3. to find the square root.

sas

Program Summary - Program 3. to find the square root.sas

Execution Environment

Author: sasdemo
File: /folders/myfolders/Program 3. to find the square root.sas
SAS Platform: Linux LIN X64 2.6.32-754.6.3.el6.x86_64
SAS Host: LOCALHOST
SAS Version: 9.04.01M6P11072018
SAS Locale: en_US
Submission Time: 5/23/2021, 8:47:11 PM
Browser Host: 10.0.2.2
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like
User Agent:
Gecko) Chrome/90.0.4430.93 Safari/537.36 OPR/76.0.4017.107
Application Server: LOCALHOST.LOCALDOMAIN

Code: Program 3. to find the square root.sas

data square;
input number;
sqrt = sqrt(number);
datalines;
32
;

proc print data = square;


run;

Log: Program 3. to find the square root.sas

Notes (4)

1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;


72
73 data square;
74 input number;
75 sqrt = sqrt(number);
76 datalines;

NOTE: The data set WORK.SQUARE has 1 observations and 2 variables.


NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds

78 ;

1/2
5/23/2021 Program Summary - Program 3. to find the square root.sas

79
80 proc print data = square;
81 run;

NOTE: There were 1 observations read from the data set WORK.SQUARE.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.03 seconds
cpu time 0.04 seconds

82
83
84 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
96

Results: Program 3. to find the square root.sas

Obs number sqrt


1 32 5.65685

2/2

You might also like