No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Hey Great thing ! What would you pay for complete numerical solution of the PDEs from page 328 to 331 written in c++ ? yap
hi maybe you want to program such thing like jep: [url]http://www.singularsys.com/jep/[/url] yap
[QUOTE=pritaeas;628841]Can you give an example ? That may clarify what you want to achieve.[/QUOTE] [code=sql] create table product(proID integer not null, name varchar(100), primary key(proID)); create table price(picID integer not null, price decimal(10,2), primary key(picID)); create table product_price(proID integer not null, picID integer not null, primary key (proID, picID), foreign …
I would advice embedded Derby/JavaDB --- yap
Dear guys I am rather new to Java and Java databases. Now I have just installed netbeans v6.1 together with derby (javaDB) on win XP, SP 2. Creating and running java programs is ok, but I can't start derby server from netbeans services menu. NetBeans tells me: java.lang.NoClassDefFoundError: org/apache/derby/drda/NetworkServerControl. Exception …
[QUOTE=kurt2;627748]. . . 0 5.0000000000000001e-009 1.0000000000000000e-008 1.5000000000000002e-008 2.0000000000000000e-008 2.4999999999999999e-008 (woah ! because of this, I get an extra iteration) 2.9999999999999997e-008 . . .[/QUOTE] What do you think of such a solution: [code=c++] int main() { int n = 0; double dn; while (n < 25) { dn = 1.0e-09*n; // …
Hello I have older c functions which I want invoke in new cpp program: [code=cpp] // Example of old c function void c_function(int** x, int r, int c) { int i, j; for (i = 0; i < r; i++) { for (j=0; j<c;i++) printf("%i ", *(*(x+i)+j)); printf("\n"); } } …
Hi all in here, It is said that system("PAUSE"), automatically generated by dev-c++ for console application, to prevent console window of disappearing instantly would be not standard c++, furthermore it would be consume much of a computers resources. What is a good replacement for it? I have been experimenting with …
The End.
yap