|
Hello my name is Andres Ortiz I' am 19 year old I from Santo Domingo I' am student of eastside high school and Paterson new Jersey my favorite sport is baseball I' play first base . I like read books an write C++ programs. Such as you read below. This program generates prime numbers.
#include<iostream.h> #include<iomanip.h> void main() { int a=0, b=1, d=0; for( a=0; a<=2500; a=a+1 ) { b=1; d=0; while(a>=b) { if(a % b == 0) { d=1+d; if ( (b==a) && ( d==2 ) ) cout<<setw(4)<<a<<" "; } b=b+1; } }
}
|
|