write a function that recives an integer number and return true if it is a prime number and false otherwise.
اكتب اقتران يستقبل رقم من نوع int وبرجع true اذا الرقم اولي false اذا غير ذلك
write a function that recives an integer number and return true if it is a prime number and false otherwise.
اكتب اقتران يستقبل رقم من نوع int وبرجع true اذا الرقم اولي false اذا غير ذلك
write a function that recives 2 integer numbers and print the prime numbers between them.
write a void function named swap that recives 2 integer and swap them.
اه اوكي عرفتها عندي كتاب كامل بالعربي سي بلس بلس
كود PHP:
#include <iostream>
bool isPrime(int x)
{
int max = static_cast <int> (x);
if (x <= 0 || x == 1 || (x % 2 == 0 && x != 2)) return false;
for (int i = 3; i < max; i += 2)
if (x % i == 0)
return false;
return true;
}
int main ()
{
for (int i = 2; i < 100; i++)
if (isPrime(i))
std::cout << i << " is a prime number!" << std::endl;
std::cin.get();
return EXIT_SUCCESS;
}
كود PHP:
#include <iostream.h>
void primes(int initial, int final);
void main()
{
int initial, final;
cout << "Enter initial value: ";
cin >> initial;
cout << "Enter final value: ";
cin >> final;
cout << endl <<"Prime nummbers between " << initial << " and " << final << " are: " << endl << endl;
primes(initial,final);
}
int rem;
void primes(int initial, int final)
{
for ( int a=initial; a<=final ; a++ )
{
bool numisprime = 1;
for (int i=2 ; i < a ; i++ )
{
rem = a%i;
if (rem==0)
{
numisprime = 0;
}
}
if (numisprime!=0)
cout << a << endl;
}
}
التعديل الأخير تم بواسطة Sc®ipt ; 06-07-2011 الساعة 12:40 AM
write c++ program contains afunction called sum
that receives an integer number of any length and return the sum of digits that is multiple of 3 only
then call your function from main function
التعديل الأخير تم بواسطة Sc®ipt ; 06-07-2011 الساعة 12:41 AM
يسلمو زيد غلبتك معي الله يسعدك ما احسنك
يسلمو صديقة غلبتك
احرجتوني
الذين يشاهدون الموضوع الآن: 1 (0 من الأعضاء و 1 زائر)
مواقع النشر (المفضلة)