C语言 查找书籍(结构体)

Description

给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。

Input

输入第一行给出正整数n(\lt10<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。

Output

在一行中按照“价格, 书名”的格式先后输出价格最高和最低的书。价格保留2位小数。

Sample Input 1 

3
Programming in C
21.5
Programming in VB
18.5
Programming in Delphi
25.0

Sample Output 1

25.00, Programming in Delphi
18.50, Programming in VB

代码 

#include
#include
int main(void)
{
    struct book
    {
        char name[30];
        double price;
    };
    int n;
    scanf("%d",&n);
    struct book b[10];
    for(int i=0; ib[max].price)
        {
            max=i;
        }
        if(b[i].price

 

你可能感兴趣的:(c语言,开发语言)