Multiple operations in a "Do" expression
- To: mathgroup at smc.vnet.net
- Subject: [mg123196] Multiple operations in a "Do" expression
- From: Mark <big.dog1 at att.net>
- Date: Sat, 26 Nov 2011 05:07:09 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
Hello community I'm learning Mathematica. The expression below just performs one operation. For instructive purposes, what would be the syntax to perform two or more operations with the counter value of the "Do" expression below such as another calculation. Thanks in advance. Mark Module[{a}, a=2; Do[Print[idx," x ",a, " = ", idx*a],{idx,0,3}](*Multiply the loop-counter by the variable "a" here and print*) ] 0 x 2 = 0 1 x 2 = 2 2 x 2 = 4 3 x 2 = 6
- Follow-Ups:
- Re: Multiple operations in a "Do" expression
- From: Bob Hanlon <hanlonr357@gmail.com>
- Re: Multiple operations in a "Do" expression