Re: output forms
- To: mathgroup at smc.vnet.net
- Subject: [mg121508] Re: output forms
- From: "Oleksandr Rasputinov" <oleksandr_rasputinov at hmamail.com>
- Date: Sun, 18 Sep 2011 04:09:50 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <j51sp2$pf7$1@smc.vnet.net>
On Sat, 17 Sep 2011 11:28:50 +0100, klkj fukyfl <kitas11 at yahoo.com> wrote:
> Hello, I need Matheamtica to do the following:
>
> in:
>
> a=1;
> b=2;
> c=3;
> d=a+b*c
>
> out:
>
> d=1+2*3
> and so on...
>
> previously I was using another system, but I found that this kind of
> stuff is impossible
>
> Can this be performed on Mathematica?
If I have understood you correctly, yes:
In[1] :=
With[{
a = 1,
b = 2,
c = 3
},
HoldForm[d = a + b*c]
]
Out[1] =
d = 1 + 2=D73