Created
December 6, 2018 16:32
-
-
Save rkhang7/3d77860d3ec22ac89c06f89000729da8 to your computer and use it in GitHub Desktop.
Sử dụng lại bài 29. Viết chương trình tìm giá trị nhỏ nhất của các phần tử trong mảng 1 chiều.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <conio.h> | |
int main() | |
{ | |
int n,min; | |
printf("Nhap so phan tu cua mang: ");scanf("%d", &n); | |
int a[n]; | |
for(int i=0;i<n;i++) | |
{ | |
printf("a[%d]=",i);scanf("%d", &a[i]); | |
} | |
min=a[0]; | |
for(int i=0;i<n;i++) | |
if(min>a[i]) min=a[i]; | |
printf("Phan tu nho nhat trong mang la %d", min); | |
getch(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment