Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 749,771 points

Jonathan

Favorite Answers80%
Answers4,194

I wrote a VB.NET 3.5 program to aid in writing Yahoo answers that include source code and mathematics. It is at:         http://www.infinitefactors.org/misc/CodeCvt_NET3_5.zip A few examples showing the math input: 1.        y = \int x^2 dx 2.        d_2(t) = V\cdot\(t-3) - \frac{1}{2}\cdot\g\cdot\(t-3)^2,     3 \le t \le 3+2\frac{V}{g} And the math output: 1.        y = ∫ x² dx 2.        d₂(t) = V⋅(t-3) - ½⋅g⋅(t-3)²,     3 ≤ t ≤ 3+2V ⁄ g Code example with indentation intact: char * revstr( char * p, char * q ) {     char *s= p;         while ( p < q ) {             char c= *p;             *p++= *q;             *q--= c;         }     return s; }

Sorry, nothing to see here! User's activity is private.