ultimatepp/uppdev/Ns/main.cpp
cxl 8723412b3a Syncing uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@1058 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2009-04-15 17:02:24 +00:00

21 lines
363 B
C++

#include <CtrlLib/CtrlLib.h>
#include <Report/Report.h>
using namespace Upp;
GUI_APP_MAIN
{
String qtf = "[R5 {{1:1:1:1:1:1:1:1:1:1<500>500 ";
for(int i = 1; i <= 10; i++)
for(int j = 1; j <= 10; j++) {
if(i * j > 1)
qtf << ":: ";
if(i * j == 100)
qtf << "[R4 ";
qtf << i * j;
}
Report r;
r << qtf;
Perform(r);
}