using UIKit;
|
|
namespace Home.IOS
|
{
|
public class Application
|
{
|
// This is the main entry point of the application.
|
static void Main(string[] args)
|
{
|
// if you want to use a different Application Delegate class from "AppDelegate"
|
// you can specify it here.
|
UIApplication.Main(args, null, "AppDelegate");
|
|
int count1 = (9 / 10) + 1;
|
int count2 = 0;
|
for (int i = 0; i < 9; i += 10)
|
{
|
count2++;
|
}
|
|
int count11 = (10 / 10) + 1;
|
int count21 = 0;
|
for (int i = 0; i < 10; i += 10)
|
{
|
count21++;
|
}
|
|
int count111 = (11 / 10) + 1;
|
int count211 = 0;
|
for (int i = 0; i < 11; i += 10)
|
{
|
count211++;
|
}
|
int count1111 = (21 / 10) + 1;
|
int count2111 = 0;
|
for (int i = 0; i < 21; i += 10)
|
{
|
count2111++;
|
}
|
var a = count2;
|
var a1 = count21;
|
var a11 = count211;
|
var a111 = count2111;
|
}
|
}
|
}
|