input license here

Lập trình C - Tìm số bé nhất của một số nguyên

Bài toán: Cho số nguyên dương gồm k chữ số tìm số bé nhất của số nguyên đó.
Đầu vào
Nhập một số nguyên dương
Đâu ra
Số bé nhất trong số nguên dương đó

Lập trình C - Tìm số bé nhất của một số nguyên

Code toàn bộ chương trình
//cho so nguyen duong gom k chu so tim so be nhat
#include<conio.h>
#include<stdio.h>
main()
{
int n,min;
printf("nhap n:\n");
scanf("%d",&n);
min=n%10;
do{
n/=10;
if(min>=n%10)
{
min=n%10;
}
else
{
min=min;
}
}while(n/10!=0);
printf("so be nhat la : %d\n",min);
getch();
}

Related Posts
Diệp Quân
Nguyen Manh Cuong is the author and founder of the vmwareplayerfree blog. With over 14 years of experience in Online Marketing, he now runs a number of successful websites, and occasionally shares his experience & knowledge on this blog.
SHARE

Related Posts

Subscribe to get free updates

Post a Comment

Sticky