?? eql_neql.c
字號:
#include <stdio.h>
void main ()
{
int age = 21;
int height = 73;
if (age == 21)
printf("User's age is 21\n");
if (age != 21)
printf("User's age is not 21\n");
if (height == 73)
printf("User's height is 73\n");
if (height != 73)
printf("User's height is not 73\n");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -