Hi All,
I am new to SAS and I am practicing doing different process' using the coding.
I am trying to do the following, however I have hit a wall.
If we list all of the natural numbers below 10 that are multiples
of 3 or 5, we get: 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
Please can anyone advise how this should be written
How about this:
data test;
do i=1 to 999;
if mod(i,3)=0 or mod(i,5)=0 then total+i;
if i=999 then output;
end;
run;
How about this:
data test;
do i=1 to 999;
if mod(i,3)=0 or mod(i,5)=0 then total+i;
if i=999 then output;
end;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.