Ask question

Ask Questions and Get Answers from Our Community

Answer

Answer Questions and Become an Expert on Your Topic

Contact Staff

Our Experts are Ready to Answer your Questions

Follow Us On Social Media

Search results

  1. S

    Bài tập về Mảng 1 chiều

    Tìm Giá trị dương đầu tiên trong mảng 1 chiều các số thực. #include <stdio.h> #include <conio.h> void main() { float mang[10];//Khoi tao mang 10 so thuc printf("Nhap day cac so nguyen \n"); for(int i=0;i<10;i++)//i chay tu 0 den 9,phan tu thu 10 cua mang dung de luu ki tu trong {...
  2. S

    Bài tập về Mảng 1 chiều

    Viết hàm tìm giá trị lớn nhất trong mảng 1 chiều các số thực #include <stdio.h> #include <conio.h> void main() { float max; float mang[10];//Khoi tao mang 10 so thuc printf("Nhap day cac so nguyen \n"); for(int i=0;i<10;i++)//i chay tu 0 den 9,phan tu thu 10 cua mang dung de luu ki tu...
  3. S

    Bài tập về Mảng 1 chiều

    Viết hàm liệt kê các vị trí mà giá trị tại đó là giá trị âm trong mảng 1 chiều #include <stdio.h> #include <conio.h> void main() { int mang[10];//Khoi tao mang 10 so nguyen printf("Nhap day cac so nguyen \n"); for(int i=0;i<10;i++)//i chay tu 0 den 9,phan tu thu 10 cua mang dung de luu ki...
  4. S

    Bài tập về Mảng 1 chiều

    1.Viết hàm liệt kê các giá trị chẵn trong mảng 1 chiều các số nguyên #include <stdio.h> #include <conio.h> void main() { int mang[10];//Khoi tao mang 10 so nguyen printf("Nhap day cac so nguyen \n"); for(int i=0;i<10;i++)//i chay tu 0 den 9,phan tu thu 10 cua mang dung de luu ki tu trong...
  5. S

    bài tập cơ bản

    //Dao nguoc so #include<stdio.h> #include<conio.h> void main() { int n,m; printf("Nhap so can dao nguoc "); scanf("%d",n); while(n!=0) { m=m*10+n%10; n=n/10; } printf("So dao nguoc la %d",m); getch(); }
  6. S

    bài tập cơ bản

    //Dem chu so #include<stdio.h> #include<conio.h> void main() { int n,i; printf("Nhap so n= "); scanf("%d",n); while(n!=0) { n=n/10; i=i+1; } printf("So chu so la i= %d",i); getch(); }
  7. S

    bài tập cơ bản

    //Kiem tra mot so co phai la so nguyen to hay khong #include<stdio.h> #include<conio.h> void main() { int x,i,dem=0; printf("Nhap so can kiem tra: "); scanf("%d",&x); for(i=1;i<=x;i++) { if(x%i == 0) dem=dem+1; } if(dem==1 || dem==2)...
  8. S

    bài tập cơ bản

    \\ Tim uoc chung lon nhat va boi chung nho nhat #include<stdio.h> #include<conio.h> int UCLN(int a ,int b) { while(a != b) { if(a > b) a = a - b; else b = b - a; } return a; } int BCNN(int a, int b) { return a*b/UCLN(a,b); } void...

Follow Us On Social Media

Top