Jump to content
ju71

caut liste de nr de mobil

Recommended Posts

salut baieti caut numere de mobil indiferent de retea(doar romania) cat mai multe sau cum pot sa fac rost de asa ceva?

m-am gandit si la un soft sau script care sa genereze numere daca stie cineva ,vreau sa ex ceva de trimis sms in masa

va multumesc :)

Link to comment
Share on other sites

#include<iostream.h>
#include<fstream.h>
ofstream f("nr.txt");
int main()

{

int n,i,j,r;
long nr;
cout<<"Introduceti numarul de numere care vor fi generate: "; cin>>nr;
cout<<"Introduceti reteaua: \n 2/3 - vodafone \n 4/5 - orange \n 6/8 - cosmote \n"; cin>>r;
for(j=1; j<=nr; j++)
{
f<<"07"<<r;
for(i=1; i<=7; i++)
{
n=rand() %10;
f<<n;
}
f<<endl;

}
f.close();
}

https://rstforums.com/forum/69486-generator-numere-de-telefoane-mobile.rst#post449533

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...