6)
1-b; 2-d; 3-a; 4-c.
7)На C++
#include
using namespace std;
int main(void)
{
int age = 0;
cout << "Input your age: "; <br> cin >> age;
if (age > 18 || age == 18)
cout << "You have the right to vote." << endl; <br> else
cout << "You don't have the right to vote." << endl; <br> system("pause");
return 0;
}