#include <stdio.h>
#include <stdlib.h> struct student{
int num;
char str[];
double dec;
}; int main(){ int n;
struct student stu[]; scanf("%d", &n);
for(int i = ; i < n; ++i){
scanf("%d%s%lf", &stu[i].num, stu[i].str, &stu[i].dec);
} printf("%d\n", n);
for(int i = ; i < n; ++i){
printf("%d %s %lf\n", stu[i].num, stu[i].str, stu[i].dec);
}
return ;
}
/*
3
20 字符串0 20.02
21 字符串1 21.12
22 字符串2 22.22
*/

最新文章

  1. jsp实验二
  2. Python 代码优化常见技巧
  3. Wix 安装部署教程(三)自定义安装界面和行为
  4. mongodb版本管理
  5. [LeetCode] Single Number III ( a New Questions Added today)
  6. struts2源代码学习之初始化(一)
  7. volatile之一--volatile不能保证原子性
  8. php抓取页面的几种方法详解
  9. Composer入门
  10. Maven之多模块打包成一个jar包及assembly
  11. Linux下crontab命令添加Kettle作业定时任务
  12. iOS APP上架被拒重新提交审核教程
  13. 语句、变量等js最基本知识
  14. 【Shell】单行注释和多行注释
  15. angular ng-repeat出来的数据 每条修改数据后返回给接口 如何取到每个对应修改的值
  16. HDU 1025(最长上升子序列)
  17. 【工具相关】Web--nodejs的安装
  18. 用pigz代替gzip -- 并行压缩软件
  19. js选择器 querySelector
  20. Codeforces 821C Okabe and Boxes(模拟)

热门文章

  1. UVA 12544 - Beehives O(nm) 无向图最小环
  2. iOS--关于同步下载
  3. Linux 计划任务
  4. Why do we live in this world?
  5. Leetcode Edit Distance
  6. web Worker使js实现‘多线程’?
  7. Mongoose 的实例方法中访问静态方法
  8. Browsersync — 省时的浏览器同步测试工具
  9. mysql数据库安装及使用
  10. 第十周 psp