-
Notifications
You must be signed in to change notification settings - Fork 1
/
Teamwork.cpp
117 lines (91 loc) · 3.16 KB
/
Teamwork.cpp
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include "string"
#include <array>
using namespace std;
extern "C" bool IsValidAssembly(int a, int b);
// Write here the UO that you have used as ID: UO229908
//In CheckBits() you have to call InvalidLicense() if any of these conditions is true:
//
//- Bit 2 of the first number is not 1.
//- Bit 2 of the first number is not equal to bit 2 of the second number.
//- After composing a 32 - bit number taking the most significant 9 bits from the first number and the rest of the bits from the second number, the result is less than 900.
//
//CheckAssembly() must ask for a 32 - bit integer and it must pass this number to the function IsValidAssembly().As second parameter to this function, you must pass 2.
//
//The function IsValidAssembly() must be implemented in assembly in the file Assembly - code.asm.It must return an integer, which must be 1 if all the bits that are set to 1 in the second parameter are also set to 1 in the first parameter.Otherwise, it must return 0.
//
//CheckInlineAssembly() must ask for a 32 - bit integer and it must check, using inline assembly, that its bits 2 and 3 are equal.Otherwise, InvalidLicense() must be called.
string ID = "229908";
string InvalidLicense() {
cout << " LICENSE IS NOT VALID";
exit(EXIT_FAILURE);
}
//receives a number, returns its binary representation in an array
array<int, 32> ArraySplit(long num) {
//initialization of the array
array<int, 32> a = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
//loop for obtaining the binary bits
unsigned long long x = static_cast<unsigned long long>(num);
int counter = 0;
while (x != 0)
{
unsigned long long bit = x & 1;
a[counter] = bit;
counter++;
x >>= 1;
}
//return the array
return a;
}
bool CheckPassword() {
string password;
cout << "Introduce your password: ";
cin >> password;
if (ID.compare(password) != 0) {
InvalidLicense();
return false;
}
else
printf("Password matches ID");
return true;
}
int CheckBits() {
long num1, num2;
//get the numbers
cout << "Introduce the first number (32-bit): ";
cin >> num1;
cout << "Introduce the second number (32-bit): ";
cin >> num2;
//transform the numbers into an array of ints formed by 0s and 1s for comparison
array<int, 32> num1Binary = ArraySplit(num1);
array<int, 32> num2Binary = ArraySplit(num2);
//transform the ID into an array of ints for comparison
//int IDToBinary[32] = StringToArray(ID);
//auxiliary array, sum of most significant bits from first number + less significant from second number
int sumArray[32];
//Check conditions
if (num1Binary[0] = !1) {
InvalidLicense();
}
else if (num1Binary[0] != num2Binary[1]) {
InvalidLicense();
}
else if (true) {
//COMPLETAR ESTO
}
return 0;
}
int main()
{
CheckBits;
return 0;
}
//--------------------Auxiliary methods--------------------------------------
//receives an string, transforms it into a decimal int and then into binary
/*array<int, 32> StringToArray(string str) {
long num = Long.parse(str);
return ArraySplit(str);
}
*/