Строки (C): различия между версиями

Материал из Информационная безопасностя
Перейти к навигации Перейти к поиску
Строка 3: Строка 3:
 
* [https://docs.microsoft.com/ru-ru/cpp/c-language/c-string-literals?view=msvc-160 Строковые литералы в C (справка Микрософт)]
 
* [https://docs.microsoft.com/ru-ru/cpp/c-language/c-string-literals?view=msvc-160 Строковые литералы в C (справка Микрософт)]
 
* [https://www.tutorialspoint.com/cprogramming/c_strings.htm Строки (tutorialspoint)]
 
* [https://www.tutorialspoint.com/cprogramming/c_strings.htm Строки (tutorialspoint)]
 +
 +
== Задачник ==
 +
* [http://ptaskbook.com/ru/tasks/string.php Строки]
 +
 +
=== 24 ===
 
<syntaxhighlight lang="c" line>
 
<syntaxhighlight lang="c" line>
 
#include <stdio.h>
 
#include <stdio.h>
Строка 25: Строка 30:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 
== Задачник ==
 
* [http://ptaskbook.com/ru/tasks/string.php Строки]
 

Версия 07:33, 11 июня 2021

Строки

Задачник

24

 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 int main() {
 5     char* binStr = "101001";
 6     // char binStr[20];
 7     // scanf("%s", &binStr);
 8 
 9     int multiplier = 1;
10     int dec = 0;
11 
12     for (int i = strlen(binStr)-1; i >= 0; i--) {
13         if (binStr[i] == '1') {
14             dec += multiplier;
15         }
16         multiplier *= 2;
17     }
18 
19     printf("%s\n%d", binStr, dec);
20 }