25.12.2014, 15:31
(
Последний раз редактировалось Edw; 25.12.2014 в 17:14.
)
fixed
main()
{
new reports = 30; //You have 30 reports in your database.
new a = reports -9;//You want to get the last 10 reports. 9 because you need to count also the newest report. That's the reason we use a<= reports, bc the last report should also be shown.
while( a<=reports)
{
printf("%i",a);
a++;
}
return 1;
}
21 22 23 24 25 26 27 28 29 30