Материал из Информационная безопасностя
Перейти к навигации
Перейти к поиску
Условный оператор
1 printf("Please enter water temperature in degrees celsius:");
2 string tempString = Console.ReadLine();
3 int temp = Convert.ToInt32(tempString);
4 if (temp >= 100)
5 {
6 printf("Water is boiling.");
7 }
8 else
9 {
10 printf("Not hot enough.");
11 }
12
13 switch(i)
14 {
15 case -1:
16 n++;
17 break;
18 case 0 :
19 z++;
20 break;
21 case 1 :
22 p++;
23 break;
24 }
Циклы
1 printf("while loop\n");
2 int i = 1;
3 while (i < 11)
4 {
5 printf("%d\n", i);
6 i++;
7 }
8
9 printf("do while loop\n");
10 i = 1;
11 do
12 {
13 printf("%d\n", i);
14 i++;
15 } while (i < 11);
16
17 printf("for loop\n");
18 for (int j = 1; j < 11; j++)
19 {
20 printf("%d\n", j);
21 }
Задачник