1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | #include <iostream> #include <math.h> using namespace std; int main () { int a,b,c,d,i,j,minimum; cout<<"Enter the all four number "; cin>>a>>b>>c>>d; if(a<b&&a<c&&a<d) minimum=a; else if (b<c&&b<d) minimum=b; else if (c<d) minimum=c; else minimum=d; for(j=minimum;;--j) { if(a%j==0 && b%j==0 && c%j==0&& d%j==0) { break; } } for(i=1;;i++) { if(i%a==0 && i%b==0 &&i%c==0&& i%d==0) break; } cout<<"Lowest Common factor=>"<<i<<endl; cout<<"Highest Common Factor="<<j; } |
What is SMS Spoofing? SMS Spoofing allows you to change the name or number text messages appear to come from. The Story Behind SMSspoofing.com SMSspoofing.com initially was a service that launched in August 2005 allowing users to spoof SMS text messages. However, the service only lasted a few days due to legal threats from around the world. Pressure was put on us by our bulk text messaging provider because mobile carriers around the world were complaining that they were responsible for thousands of spoofed SMS messages. The plug was pulled and we were forced to stop offering our SMS spoofing service. In a matter of days over 250,000 people had visited this site and over 25,000 users from around the world, mostly in Europe (specifically the Czech Republic, where we were prominently featured by the media), had signed up for our service. This website has pretty much been abandoned until we decided to turn this site into an information site in June 2008! Now we're back a...
Comments
Post a Comment
share your thoughts ....