-
Notifications
You must be signed in to change notification settings - Fork 0
/
main old.c
80 lines (68 loc) · 1.91 KB
/
main old.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
// Про шахматную доску и координаты -------------------
int x1, y1, x2, y2;
char color1, color2;
printf("\n Input coord x1 :");
scanf("%d", &x1);
printf("\n Input y1 :");
scanf("%d", &y1);
if (((y1 % 2 != 0) & (x1 % 2 != 0)) || ((y1 % 2 == 0) & (x1 % 2 == 0))) {
color1 = 'w';
} else {
color1 = 'b';
}
printf("\n Color 1 :%c\n", color1);
printf("\n Input x2 :");
scanf("%d", &x2);
printf("\n Input y2 :");
scanf("%d", &y2);
if (((y2 % 2 != 0) & (x2 % 2 != 0)) || ((y2 % 2 == 0) & (x2 % 2 == 0))) {
color2 = 'w';
} else {
color2 = 'b';
}
printf("\n Color 2 :%c\n", color2);
if (color1 == color2) {
printf("\n Color the same.");
} else {
printf("\n Color NOT same.");
}
printf("\n");
system("pause");
// Обмен двух чисел a , b без посредников --------------
int a, b;
a = 5;
b = 123644;
printf("A = %d, B = %d \n", a, b);
system("pause");
a = a + b;
b = a - b;
a = a - b;
printf("Now A = %d, B = %d \n", a, b);
// Индекс массы тела BMI -------------------------
float h;
int m;
printf("\n Input h (v metrah):");
scanf("%f", &h);
printf("Input m :");
scanf("%d", &m);
float bmi = m / (h * h);
printf("Body mass index = %f\n", bmi);
system("pause");
return 0;
// ввод данных с проверкой--------------
//
// int n,count=0;
// metka:
// count++;
// printf("%d. Input number:",count);
// if (scanf("%d",&n)==0)
// {
// fflush(stdin); //очищаем поток ввода
// goto metka;
// }
// printf("Count %d",count);
//
}