Thông tin tài liệu:
Đây là bài tập môn phương pháp lập trình gửi đến các bạn độc giả tham khảo.
Nội dung trích xuất từ tài liệu:
Bài tập môn phương pháp lập trình BÀI TẬP CHƯƠNG 7Bài 1:#include #include char ASCII(char A[]){ for(int i=0; A[i]!=\0; i++) { if ( A[i] != ) { coutBài 3:#include #include int doixung(char *st);int main(){ char s[1000]; coutBài 4:#include #include int main(){ char s[1000],kt; int D=0; coutBài 5:#include#includeint main(){//Phan 1: int i=0,tam; char s[100]; coutBài 6:#include #include int main(){ char s[100]; coutBài 7:#include #include int main(){ int l, i, k, tam; char s[100]; coutBài 9:#include #include int ktd(char s1[], int n);int ktd(char s1[], int n){ int d=0; for(int i=0;i=0; i--) if(s1[i]== ) c++; else break; return c;}int main(){ char *s1,*s2; s1=new char[50]; s2=new char[50]; cout cout BÀI TẬP CHƯƠNG 8Bài 1: #include #include struct nhanvien { unsigned int maNV; char hoten[100]; char diachi[100]; int CBQL; }; typedef nhanvien dsNV[100]; int nhap(dsNV nv, int n) { for (int i=0; i< n; i++) { coutint xuat(dsNV nv, int i){ coutBài 2: #include #include struct nhanvien { unsigned int maNV; char hoten[100]; char diachi[100]; int CBQL; }; typedef nhanvien dsNV[100]; int nhap(dsNV nv, int n) { for (int i=0; i< n; i++) { coutint xuatCBQL(dsNV nv, int n){ for(int i=0; iBài 3: #include #include struct nhanvien { unsigned int maNV; char hoten[100]; char diachi[100]; int CBQL; }; typedef nhanvien dsNV[100]; int nhap(dsNV nv, int n) { for (int i=0; i< n; i++) { coutint xuat(dsNV nv, int i){ cout BÀI TẬP TRƯỚCBài 1/33: //chu vi va dien tich hinh tron #include int main() { float r , p , s; const float pi=3.14; cout >r; p=2*pi*r; s=pi*r*r; cout Bài 7/33: //tinh chu vi va dien tich tam giac #include #include #include int main() { float a , b , c , p , s , e; cout >a; cout >b; cout >c; p=a+b+c; e=p/2; s=sqrt(e*(e-a)*(e-b)*(e-c)); cout Bài 9/33: //tinh so mu #include #include int main() { float a , b , c; cout >a; cout >b; c=pow(a,b); cout Bài 11/33: //tinh sin cos tan cot #include #include #include int main() { float x , a , b , c , d , t; const float pi=3.14; cout >x; t=x*pi/180; a=sin(t); b=cos(t); c=tan(t); d=1.0/tan(t); cout Bài 13/33: //tim he so goc #include #include int main() { float x1 , y1 , x2 , y2 , k , x , y; cout >x1; cout >y1; cout >x2; cout >y2; x=x2-x1; y=y2-y1; k=y/x; coutBài 15/34: #include #include int main() { int h , m , s , n ,p; coutn; h=(n/3600)%24; m=(n%3600)/60; s=(n%3600)%60; p=h-12; (h