CÂU 1: TÌM SỐ NGUYÊN TỐ LỚN NHẤT ĐƯỢC NHẬP TỪ N. VD: NHẬP N=20 THÌ SỐ NGUYÊN TỐ LỚN NHẤT ĐẾN 19 LÀ 17.
CÂU 2: (X^2+X^4+X^6+........)/(1!+3!+5!+.....)
VIẾT BẰNG HÀM.
- Code:
-
//nguyen vu hoai phuong
#include<iostream.h>
#include<conio.h>
#include<math.h>
int nguyento(int n);
int tinhs(int n, int x);
int main()
{
int so,x,n;
cout<<"Nhap vao mot so bat ky: ";
cin>>so;
nguyento(so);
cout<<endl<<endl;
cout<<"Nhap X: ";
cin>>x;
cout<<"Nhap N: ";
cin>>n;
tinhs(n,x);
getche();
}
int nguyento(int so)
{
int i,j,f;
for(i=1;i<=so;i++)
{
for(j=2;j<=i;j++)
if(i%j==0) break;
if(i==j) f=i;
}
cout<<"so ngueyn to lon nhat la: "<<f;
}
int tinhs(int n, int x)
{
int i,j,e,m,t,mau,tu;
float s;
mau=1;
for(e=1,tu=0;e<=n;e++)
if(e%2==0)
{
t=pow(x,e);
tu=tu+t;
}
for(i=1;i<=n;i++)
if(i%2!=0)
for(j=1,m=1;j<=i;j++)
{
m=m*j;
}
mau=mau+m;
s=1.0*tu/mau;
cout<<"KET QUA: "<<s;
}