Условный оператор. Циклы. (C): различия между версиями

Материал из Информационная безопасностя
Перейти к навигации Перейти к поиску
Строка 4: Строка 4:
 
* [https://docs.microsoft.com/ru-ru/cpp/c-language/conditional-expression-operator?view=msvc-160 Условный тернарный оператор (справка Микрософт)]
 
* [https://docs.microsoft.com/ru-ru/cpp/c-language/conditional-expression-operator?view=msvc-160 Условный тернарный оператор (справка Микрософт)]
 
<syntaxhighlight lang="c#" line>
 
<syntaxhighlight lang="c#" line>
printf("Please, enter your age:");
+
printf("Please enter water temperature in degrees celsius:");
string ageString = Console.ReadLine();
+
string tempString = Console.ReadLine();
int age = Convert.ToInt32(ageString);
+
int temp = Convert.ToInt32(tempString);
if (age > 65)
+
if (temp >= 100)
 
{
 
{
     printf("Here is your pension.");
+
     printf("Water is boiling.");
 
}
 
}
 
else
 
else
 
{
 
{
     printf("Good morning people!");
+
     printf("Not hot enough.");
 
}
 
}
  

Версия 18:18, 8 июня 2021

Условный оператор

 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 }

Задачник