Bai Tap Do An

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Bai Tap Do An as PDF for free.

More details

  • Words: 407
  • Pages: 3
Bài tập số 2: Tinh tổng các S=1/X - 1/X2 + 1/X3 - 1/X4 + …. lúc 1/Xn <epsilon #include #include<stdio.h> #include #include<stdlib.h> void main() { clrscr(); int n,dau=1; float s=0; do { cout<<"nhap vao X:"; cin>>x; } while (x<0|| x>1); cout<<"nhap vao n:"; cin>>n; for(int i=1; i<=n; i++) { s=s+dau/(pow(x,i); i++; dau=-dau; } cout<<"\n tong="<<s; getch(); }

Bài tập số 3: Tinh tổng các S=1/X - 1/X2 + 1/X3 - 1/X4 + …. lúc 1/Xn <epsilon #include #include<stdio.h> #include #include<stdlib.h> void main() { clrscr(); int dau=1; float s=0,i=,eps; do { cout<<"nhap eps:"; cin>>eps; cout<<"nhap vao X:"; cin>>x; } while ((eps<=0|| eps>=1)&& x>1); while ((1/(pow(x,i))>=eps) { s=s+dau/(pow(x,i); i++; dau=-dau; } cout<<"\n tong="<<s; getch(); }

Câu 4 . Viết chương trình: a, Tính tổng các số lẻ trong mảng b, Điếm số phần tử là bội của 3 trong mảng c, Đưa các số lẻ về đầu mảng, số chẵn về cuối mảng d, Tìm phần tử X trong mảng e, Tính tổng các phần tử lẻ có trong giá trị nằm từ C1  C2 ( Với C1, C2 được nhập từ bàn phím) #include #include #include<stdlib.h> int a[100],n,i,j; void nhap(int a[100], int &n) //nhap noi dung cua mang { cout<<"\nnhap so phan tu cua mang:"; cin>>n; for(i=0; i>a[i]; } } void xuat(int a[100], int &n) // xuat mang { cout<<"\n Noi dung mang:\n"; for(i=0; i
if(l
}

} // tim phan tu X trong mang (Cau 4d) void timx(int a[100], int n, int x) { for(i=0; i>x; timx(a,n,x); ledauchancuoi(a,n); cout<<"\n mang sau khi sap xep le dau chan cuoi:"; xuat(a,n); getch(); }

Related Documents

Bai Tap Do An
November 2019 17
Bai Tap Lon Do
July 2020 7
Bai Tap An Toan Dien
October 2019 20
Bai Tap
October 2019 78
Bai Tap
June 2020 39
Bai Tap
November 2019 67