This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(){ | |
//Заводим переменную и записываем в нее число из консоли | |
int a; | |
scanf("%d", &a); | |
//Чтобы выполнить какие то команды при каком-то условии используется оператор if. | |
//Нужно написать if и, в скобочках, условие. | |
//Если условие выполнится, компьютер выполнит команды в блоке if. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main(){ | |
int a = 7; | |
int b = 8; | |
char c = 'a'; | |
//Чтобы вывести что-то в консоль, используется команда printf |