Forum: C# May 28th, 2008 |
| Replies: 6 Views: 1,248 Re: C# SQL 2005 Select Statement Help please My SQL knowledge isn't great so I am assuming all other stuff is working.
Based upon what you said, I think you need to change what is on each side of the '='
You're putting data into the textbox... |
Forum: C# May 15th, 2008 |
| Replies: 2 Views: 395 Re: how to compute a string in c#??? I had this as a project in assembler class... it was fun
You'll want to parse the string into smaller parts as you find the operators. Then put each one into a string that you can then convert to an... |
Forum: C# May 7th, 2008 |
| Replies: 9 Views: 559 Re: I need your help This algorithm loses accuracy after 3 iterations... there is something wrong in it... I am going over it again |
Forum: C# May 7th, 2008 |
| Replies: 2 Views: 397 |
Forum: C# May 6th, 2008 |
| Replies: 3 Views: 484 |
Forum: C# May 6th, 2008 |
| Replies: 3 Views: 484 |
Forum: C# May 6th, 2008 |
| Replies: 3 Views: 413 |
Forum: C# May 4th, 2008 |
| Replies: 9 Views: 559 Re: I need your help Change
while(N*N<S);
to
while(N*N<=S);
you'll get 5 for sqrt(25) not 4.99999...
I didn't realize it until after I posted that it did something stupid to numbers with easy sqrt |
Forum: C# Apr 29th, 2008 |
| Replies: 9 Views: 559 Re: I need your help I just couldn't let it go so
It is pretty sloppy, but gets the job done... cleaning up the code is not something I'm into right now(tired)... but I think it is pretty clear
N is the nearest root less... |
Forum: C# Apr 28th, 2008 |
| Replies: 9 Views: 559 Re: I need your help [QUOTE=compovet;593850]Hi
I'm a beginer programer and I need your help
I'm using visual studio 2005 writing with c#, Iwant to make a small program at console
this program give the root of a number.
I... |