Re: Using Unusual Characters with Do
- To: mathgroup at smc.vnet.net
- Subject: [mg27211] Re: Using Unusual Characters with Do
- From: Albert Retey <albert.retey at visualanalysis.com>
- Date: Mon, 12 Feb 2001 03:20:50 -0500 (EST)
- Organization: Visual Analysis
- References: <960b7m$p57@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
hoffmann wrote:
>
> I would appreciate it very much, if someone could tell me how to use a
> character like "/" together with Do, in a command similar to the following.
>
> Do[Print[a, b], {a, 0, 9}, {b, 0, 9}]
>
> So that the character is treat in the same as it would treat a digit. Or, if
> it is impossible, can you please tell me of a way to get similar results in
> a different way.
>
> Many Thanks to whomever might respond!
>
> M. Hoffmann
Do[Print[a,"/", b], {a, 0, 9}, {b, 0, 9}]
???
Albert