Sandbox: Difference between revisions

From Rosetta Code
Content added Content deleted
m (WP template test)
(testing syntax highlighting)
Line 5: Line 5:


[[#Your Language Here]]
[[#Your Language Here]]


== Syntax highlighting ==
<c>#include <iostream>
#include <gmpxx.h>

mpf_class f(mpf_class x);
double f(double x);

int main()
{
unsigned int start = 1;
unsigned int end = 1000;
mpf_class sum = 0;
double dsum = 0;
for( unsigned int x = start;
x <= end;
++x )
{
sum += f(mpf_class(x));
dsum += f((double) x);
}
std::cout << "Sum of f(x) from " << start << " to " << end << " is " << sum << " (GMP float) or " << dsum << " (IEEE 64-bit float)" << std::endl;
return 0;
}


mpf_class f(mpf_class x)
{
return ( 1 / ( x * x ) );
}

double f(double x)
{
return ( 1 / ( x * x ) );
}
</c>


== Expression test ==
== Expression test ==

Revision as of 00:09, 23 February 2008

blah
''blah''
''blah''


#Your Language Here


Syntax highlighting

<c>#include <iostream>

  1. include <gmpxx.h>

mpf_class f(mpf_class x); double f(double x);

int main() { unsigned int start = 1; unsigned int end = 1000; mpf_class sum = 0; double dsum = 0;

for( unsigned int x = start; x <= end; ++x ) { sum += f(mpf_class(x)); dsum += f((double) x); }

std::cout << "Sum of f(x) from " << start << " to " << end << " is " << sum << " (GMP float) or " << dsum << " (IEEE 64-bit float)" << std::endl; return 0; }


mpf_class f(mpf_class x) { return ( 1 / ( x * x ) ); }

double f(double x) { return ( 1 / ( x * x ) ); } </c>

Expression test

Currently there are 2,650 articles, but if someone added another, there would be 2651 articles. Totally, there are 20,476 pages, which means that 17826 pages are not articles.

Your Language Here

Works with: Yourlanguagehere

Testing a standard language solution header.

Works with: Yourlanguagehere version 2.5
Works with: Display name version 2.5

Your Language Here

Testing a standard language solution header with different display name.



Animated FIFO

colorForth

source
colorForth
code

26 →

170 ¬

224-234 αßΓπΣσµτΦΘΩ

236 ∞

241-243 ±≥≤


244 ⌠

245 ⌡


246 ÷

247 ≈

248 °

251 √

253 ²

<sub> normalsub

<sup> normalsup

Template:WP

Template:WP