博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
五、PTA实验作业(结构体)
阅读量:5253 次
发布时间:2019-06-14

本文共 2319 字,大约阅读时间需要 7 分钟。

 

1、提交列表

2、设计思路就是设计一个类似于在数组里面求最低和最大数值的函数

 

 

最终代码如下:

 

#include
#include
#include
using namespace std;typedef struct Node{ char s[35]; double price;}Node;bool cmp(Node a, Node b){ return a.price
>n; getchar(); for(int i = 0;i
>t[i].price; getchar(); } sort(t,t+n,cmp); printf("%.2lf, %s\n",t[n-1].price,t[n-1].s); printf("%.2lf, %s\n",t[0].price,t[0].s); return 0;}

 

 

 

题目二:

1、提交列表

2、设计思路(包括流程图)

 

 最终代码如下:

#include
#include
#include
struct list{ char name[11]; char num[17]; char phone[17]; char sex[2]; char birthday[11]; }; struct list p[100]; int main() { int i=0;int j=0,N,K; scanf("%d",&N); for(i=0;i
=0) { printf("%s %s %s %s %s\n",p[number].name,p[number].num,p[number].phone,p[number].sex,p[number].birthday); } else { printf ("Not Found\n"); } } return 0; }

 

 

题目三:

1、提交列表

2. 设计思路(包括流程图)

就是从高到低的顺序来进行配对,高分的0对应低分的1,高分的1对应低分的0;由数组的先后顺序来间接表示分数顺序。

 

 最终代码如下:

 

#include
#include
#include
#include
struct node{ int a; char name[9];}p[50];int main(){ int n; scanf("%d", &n); int flag; for(int i = 0; i < n ;i++) { scanf("%d %s", &p[i].a, p[i].name); } for(int i = 0; i < n/2; i++) { flag = 0; printf("%s", p[i].name); if(p[i].a == 0) { for(int j = n-1; j >= n/2; j--) { if(p[j].a == 1&&p[j].a!= 2) { printf(" %s\n",p[j].name); p[j].a = 2; flag = 1; } if(flag == 1) break; } } else if(p[i].a == 1) { for(int j = n-1; j >= n/2; j--) { if(p[j].a == 0&&p[j].a!= 2) { printf(" %s\n",p[j].name); p[j].a = 2; flag = 1; } if(flag == 1) break; } } } return 0;}

 

 三、截图本周题目集的PTA最后排名。

 

转载于:https://www.cnblogs.com/LSCOOLYI/p/8320508.html

你可能感兴趣的文章
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
在工程中要加入新的错误弹出方法
查看>>