суббота, 9 сентября 2017 г.
воскресенье, 3 сентября 2017 г.
четверг, 4 мая 2017 г.
Dear, Vasili Vasilievich
We invite you to watch concert at somewhere. It will be at 7 th of May at 19:00. To this concert were invited all old
people who took part in World War 2. They will be shown a concert and will be
given flowers.
The main aim of this concert is to show how we respect
our heroes who protected us in war. We hope you will enjoy it!
Giniyatov Iglik.
среда, 26 апреля 2017 г.
воскресенье, 23 апреля 2017 г.
public class Main {
public static void main(String[] args) {
int x = 1;
int y = 0;
int z = 0;
while(z<5) {
x-=2;
y=(x+z)*2;
z++;
for (int n=1; n<5; n++) { System.out.print(x + "\t" + y + "\t" + z);
}
}
}
}
public class Main {
public static void main(String[] args) {
int x = 2;
int y = 8;
int z = -1;
while (z<0) { for(int n=1; n<7; n++){ System.out.println(x + "\t" + y + "\t" + z);}
x+=3;
y--;
}
}
}
public static void main(String[] args) {
int x = 1;
int y = 0;
int z = 0;
while(z<5) {
x-=2;
y=(x+z)*2;
z++;
for (int n=1; n<5; n++) { System.out.print(x + "\t" + y + "\t" + z);
}
}
}
}
public class Main {
public static void main(String[] args) {
int x = 5;
int y = 1;
int z = 0;
{
for (int n=1; n<7; n++) { System.out.println(x + "\t" + y + "\t" + z);
x-=1;
y+=1;
z=(x+y)*2;
}
while(x>0);
}
}
}
public class Main {
public static void main(String[] args) {
int x = 1;
int y = 2;
int z = 6;
for (x=1; x<5; x++) {
y=(x*4);
z++;
System.out.println(x + "\t" + y + "\t" + z);
}
}
}
public static void main(String[] args) {
int x = 2;
int y = 8;
int z = -1;
while (z<0) { for(int n=1; n<7; n++){ System.out.println(x + "\t" + y + "\t" + z);}
x+=3;
y--;
}
}
}
четверг, 6 апреля 2017 г.
Images created by pixels. They make a grid and they have their own colour. In compression the quality of image decreases, because it takes many variation of colours in pixels and they make less milticolour pixels. They try to make it in fewer variation of pixels. To decrease the quality of pixel or make smaller the size of pixel we use Discrete Cosine Transform (DCT). The forward DCT is defined as
Then we build 8*8 block. It consists 64 DCT. Each element in the quantization matrix is an integer
between 1 and 255.
By using
we decrease the number quantiazation in pixels.
четверг, 30 марта 2017 г.
вторник, 21 февраля 2017 г.
воскресенье, 29 января 2017 г.
среда, 25 января 2017 г.
вторник, 17 января 2017 г.
воскресенье, 15 января 2017 г.
среда, 11 января 2017 г.
воскресенье, 11 декабря 2016 г.
1q1->0q1R
0q1->1q2R
0q2->0q2R
1q2->0q3R
0q3->1q4R
1q3->0q5R
Bq5->BSTOPR
100101 -----------010011
0q1->1q2R
0q2->0q2R
1q2->1q3R
0q3->0q4R
0q4->1q5R
1q5->0q5R
Bq5->BSTOPR
0010011 -------------1010100
1q1->0q2R
0q2->1q3R
1q3->0q4R
1q4->1q5R
0q4->1q5R
0q5->1q5R
1q5->0q5R
Bq5->BSTOPR
0q1->1q2R
0q2->0q2R
1q2->0q3R
0q3->1q4R
1q3->0q5R
Bq5->BSTOPR
100101 -----------010011
0q1->1q2R
0q2->0q2R
1q2->1q3R
0q3->0q4R
0q4->1q5R
1q5->0q5R
Bq5->BSTOPR
0010011 -------------1010100
1q1->0q2R
0q2->1q3R
1q3->0q4R
1q4->1q5R
0q4->1q5R
0q5->1q5R
1q5->0q5R
Bq5->BSTOPR
101101 -------------010110
вторник, 6 декабря 2016 г.
воскресенье, 4 декабря 2016 г.
1. SELECT ContactName,City
FROM customers;
FROM customers;
2. SELECT DISTINCT City
FROM customers;
3. SELECT * FROM customers
WHERE country='Mexico';
4. SELECT * FROM `customers`
WHERE country<>'Canada'
5. SELECT `ID`, `ContactName`, `Address`, `City`, `PostalCode`, `Country` FROM `customers` WHERE ID<=10
6.
7. SELECT * FROM customers
ORDER BY city;
8.
9.
10.
7. SELECT * FROM customers
ORDER BY city;
8.
9.
10.
четверг, 1 декабря 2016 г.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int array[] = new int[5];
System.out.println("Insert array elements:");
for (int i = 0; i < 5; i++) {
array[i] = input.nextInt();
}
System.out.print ("Inserted array elements:");
for (int i = 0; i < 5; i++) {
System.out.print (" " + array[i]);}
Scanner nput = new Scanner(System.in);
int Narray[] = new int[10];
System.out.println();
System.out.println("Insert array elements:");
for (int k = 0; k < 10; k++) {
Narray[k] = nput.nextInt();
}
System.out.print ("Inserted array elements:");
for (int k = 0; k < 10; k++) {
System.out.print (" " + Narray[k]); }
int xa;
xa =0;
for (int l=0; l<10; l++) {
if (array[l]==Narray[l]){xa = xa + 1;}
if (xa = 5){System.out.print("yes");}else{System.out.print("no");}
}
}
}
class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int array[] = new int[5];
System.out.println("Insert array elements:");
for (int i = 0; i < 5; i++) {
array[i] = input.nextInt();
}
System.out.print ("Inserted array elements:");
for (int i = 0; i < 5; i++) {
System.out.print (" " + array[i]);}
Scanner nput = new Scanner(System.in);
int Narray[] = new int[10];
System.out.println();
System.out.println("Insert array elements:");
for (int k = 0; k < 10; k++) {
Narray[k] = nput.nextInt();
}
System.out.print ("Inserted array elements:");
for (int k = 0; k < 10; k++) {
System.out.print (" " + Narray[k]); }
int xa;
xa =0;
for (int l=0; l<10; l++) {
if (array[l]==Narray[l]){xa = xa + 1;}
if (xa = 5){System.out.print("yes");}else{System.out.print("no");}
}
}
}
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int array[] = new int[5];
System.out.println("Insert array elements:");
for (int i = 0; i < 5; i++) {
array[i] = input.nextInt();
}
System.out.print ("Inserted array elements:");
for (int i = 0; i < 5; i++) {
System.out.print (" " + array[i]);}
Scanner nput = new Scanner(System.in);
int Narray[] = new int[10];
System.out.println();
System.out.println("Insert array elements:");
for (int k = 0; k < 10; k++) {
Narray[k] = nput.nextInt();
}
System.out.print ("Inserted array elements:");
for (int k = 0; k < 10; k++) {
System.out.print (" " + Narray[k]); }
int x=0;
for (int i=0; i<5; i++) {
if (array[i]<>Narray[k]){
x++}};
if {x=5}{System.out.print("yes");}else{System.out.print("no");}
}
}
class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int array[] = new int[5];
System.out.println("Insert array elements:");
for (int i = 0; i < 5; i++) {
array[i] = input.nextInt();
}
System.out.print ("Inserted array elements:");
for (int i = 0; i < 5; i++) {
System.out.print (" " + array[i]);}
Scanner nput = new Scanner(System.in);
int Narray[] = new int[10];
System.out.println();
System.out.println("Insert array elements:");
for (int k = 0; k < 10; k++) {
Narray[k] = nput.nextInt();
}
System.out.print ("Inserted array elements:");
for (int k = 0; k < 10; k++) {
System.out.print (" " + Narray[k]); }
int x=0;
for (int i=0; i<5; i++) {
if (array[i]<>Narray[k]){
x++}};
if {x=5}{System.out.print("yes");}else{System.out.print("no");}
}
}
Подписаться на:
Сообщения (Atom)











