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
{...
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...
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...
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...
//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();
}
//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)...
\\ 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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.