HDL Home App 第二版本 旧平台金堂用 正在使用
xm
2019-12-20 3291885285dfd5d4f665c20676307878dc3163bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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;
        }
    }
}