Matrix

AkrOEnoS

Katılımcı Üye
3 May 2012
346
0
İnternette dolaşırken denk geldim. Çok hoş bir program. Sizlerle paylaşmak istedim. Umarum daha önce paylaşılmamıştır.


Kod:
[FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]
#include[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] [/COLOR][/FONT][FONT=Consolas][COLOR=#a31515][FONT=Consolas][COLOR=#a31515]<iostream>
[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]#include[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] [/COLOR][/FONT][FONT=Consolas][COLOR=#a31515][FONT=Consolas][COLOR=#a31515]<windows.h>
[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] Modulus([/COLOR][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] iN, [/COLOR][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] iMod){[/COLOR]
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] iQ = (iN/iMod);
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]return[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] iN - (iQ*iMod);
}

[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]char[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] GetChar([/COLOR][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] iGenerator, [/COLOR][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]char[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] cBase, [/COLOR][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] iRange){[/COLOR]
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]return[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] (cBase + Modulus(iGenerator, iRange));
}
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000] main(){[/COLOR]
[/FONT][FONT=Consolas][COLOR=#008000][FONT=Consolas][COLOR=#008000]//Color Code
[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas]HANDLE hConsole;
hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hConsole, 2);

[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]char[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] caRow[80];
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] j = 7;
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] k = 2;
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] l = 5;
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] m = 1;
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]while[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] ([/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]true[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas]){
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]int[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] i = 0;
[/FONT][FONT=Consolas][COLOR=#008000][FONT=Consolas][COLOR=#008000]// Output a random row of characters
[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas][/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]while[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] (i<80){
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]if[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] (caRow[i] != [/FONT][FONT=Consolas][COLOR=#a31515][FONT=Consolas][COLOR=#a31515]' '[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas]){
caRow[i] = GetChar(j+i*i, 33, 30);
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]if[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] (((i*i+k) % 71) == 0) {
SetConsoleTextAttribute(hConsole, 7);
}
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]else[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] {
SetConsoleTextAttribute(hConsole, 2);
}
}
std::cout << caRow[i];
++i;
SetConsoleTextAttribute(hConsole, 2);
}
j = (j+31);
k = (k+17);
l = (l+47);
m = (m+67);
caRow[Modulus(j, 80)] = [/FONT][FONT=Consolas][COLOR=#a31515][FONT=Consolas][COLOR=#a31515]'-'[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas];
caRow[Modulus(k, 80)] = [/FONT][FONT=Consolas][COLOR=#a31515][FONT=Consolas][COLOR=#a31515]' '[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas];
caRow[Modulus(l, 80)] = [/FONT][FONT=Consolas][COLOR=#a31515][FONT=Consolas][COLOR=#a31515]'-'[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas];
caRow[Modulus(m, 80)] = [/FONT][FONT=Consolas][COLOR=#a31515][FONT=Consolas][COLOR=#a31515]' '[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas];
[/FONT][FONT=Consolas][COLOR=#008000][FONT=Consolas][COLOR=#008000]// Delay
[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas]Sleep(10);
}
[/FONT][FONT=Consolas][COLOR=#0000ff][FONT=Consolas][COLOR=#0000ff]return[/COLOR][/FONT][/COLOR][/FONT][FONT=Consolas] 0;
}
[/FONT]
 

AkrOEnoS

Katılımcı Üye
3 May 2012
346
0
kodları dev c++da açacağınız kaynak kodu dosyasına yapıştırıp F9a basın.
 

AkrOEnoS

Katılımcı Üye
3 May 2012
346
0
Matrix filmindeki sembollerin yukarıdan aşağıya dökülme olayını dos penceresinde yapıyor
 

ali0707

Katılımcı Üye
2 Ağu 2008
706
0
yapan güzel yapmış , paylştığın için saol :D


yapamayan arkadaşlar için anlatıyım, şimdi Dev C++ adlı programımızda yeni bi sayfa açıyoruz , bu kodları yapştırıp F9 a basıyoruz, bu kadar :) Dev C++ yüklü değilse de bi bunun için yüklemenize gerek de yok yani deymez :D :D
 

HackeRLorD29

Uzman üye
6 Ağu 2012
1,126
0
bunun kriptografi bölümünde bat dosyasında yapılanı var çok hoş bir şey bilgisayara zararı yoktur:)
 
Üst

Turkhackteam.org internet sitesi 5651 sayılı kanun’un 2. maddesinin 1. fıkrasının m) bendi ile aynı kanunun 5. maddesi kapsamında "Yer Sağlayıcı" konumundadır. İçerikler ön onay olmaksızın tamamen kullanıcılar tarafından oluşturulmaktadır. Turkhackteam.org; Yer sağlayıcı olarak, kullanıcılar tarafından oluşturulan içeriği ya da hukuka aykırı paylaşımı kontrol etmekle ya da araştırmakla yükümlü değildir. Türkhackteam saldırı timleri Türk sitelerine hiçbir zararlı faaliyette bulunmaz. Türkhackteam üyelerinin yaptığı bireysel hack faaliyetlerinden Türkhackteam sorumlu değildir. Sitelerinize Türkhackteam ismi kullanılarak hack faaliyetinde bulunulursa, site-sunucu erişim loglarından bu faaliyeti gerçekleştiren ip adresini tespit edip diğer kanıtlarla birlikte savcılığa suç duyurusunda bulununuz.