Jump to content

En0mis

Members
  • Posts

    9
  • Joined

About En0mis

  • Birthday 06/04/1991

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

En0mis's Achievements

Newbie

Newbie (1/14)

16

Reputation

  1. Incearca sa defragmentezi partitia pe care e instalat Windows-ul si eventual sa eliberezi spatiu daca e prea plin (stergand fisierele temporare, cache-ul, etc). Pentru defragmentare ti-as recomanda O&O Defrag iar pentru cleaning si tuning TuneUp Utilities.
  2. c) (Pentru b se poate folosi inca o variabila "i" ca si contor) #include <stdio.h> #include <iostream> using namespace std; int main() { long long n = 20; n = n << 56; n++; while( 0 != ((n >> 56 )&0xFF)) { cout << ((n >> 32) & 0xFFFFFF) << " " << (n & 0xFFFFFF) << " "; n += (n & 0xFFFFFF) << 32; n += (n >> 32) & 0xFFFFFF; n -= ((long long)2) << 56; } return 0; } P.S. Compilat cu succes in Visual C++ 2010 Express (posibil ca alte compilatoare sa nu suporte "long long").
  3. #include <iostream> #include <math.h> using namespace std; int main() { int n = 0; double f = 0.0; while(n<20) { f=(1/sqrt(5))*(pow((1+sqrt(5))/2,n)-pow((1-sqrt(5))/2,n)); cout << f << " "; n++; } return 0; } c) #include <iostream> #include <math.h> using namespace std; int main() { int n = 0; while(n<20) { cout << (1/sqrt(5))*(pow((1+sqrt(5))/2,n)-pow((1-sqrt(5))/2,n)) << " "; n++; } return 0; }
  4. Train Signal Training – Free Computer Training Videos
  5. Am dat acum ceva timp peste niste video-uri care mi-au schimbat oarecum parerea (in bine) despre linux si comunitatea open-source. Astept parerile voastre... P.S. Ati dona(t) vreodata unui proiect open-source?
×
×
  • Create New...