mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
21 lines
363 B
C++
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);
|
|
}
|
|
|