//2019.11.13 卑微的Loving-Q瞎写的程序 报错请更改VS中的SDL检查
// 我要去嗨了,在线卑微 1 #include<iostream>
#include<stdlib.h>
#include<math.h>
#include<cmath>
#include<cstdlib>
#include<stdio.h>
#include<string.h>
using namespace std;
//不想写结构,更不爱指针 //struct book {
// char name[40];
// char place[35];
// float price;
//};
//
//
//
//int main()
//{
// struct book library=
// {
//
// "fsdfsdgdfg",
// "gdadagfkj",
// 999.99
// };
//
//
// cout << library.price;
// return 0;
//
//}
//
//struct book //结构数组
//{
// char name[40];
// float price;
//};
//
//int main()
//{
// int i;
// int u;
// struct book wunyanan[3];
// printf("先输入字符串,在输入浮点型的数据,用Enter隔开\n");
// for (i = 0; i < 3; i++)
// {
// scanf("%s", &wunyanan[i].name);
// scanf("%f", &wunyanan[i].price);
// }
// for (u = 0; u < 3; u++)
// {
// cout << wunyanan[u].name << endl << wunyanan[u].price;
// }
// system("pause");
// return 1;
//}
// ***********************************上面是结构体,下面是结构体的嵌套
struct a
{
int b;
float c;
};
struct d
{
struct a first;
int e;
int f;
}; int main()
{
int x;
struct d second =
{
{ ,44.23},, }; for (x = ; x < ; x++)
{
cout << second.first.b<<endl;
}
return ; }

最新文章

  1. 第三篇:Entity Framework CodeFirst &amp; Model 映射 续篇 EntityFramework Power Tools 工具使用
  2. 设计模式 &ldquo;续&rdquo;
  3. Sql Server FOR XML PATH
  4. Only MySqlParameter objects may be stored
  5. Codeforces Round #374 (div.2)遗憾题合集
  6. VC6.0 error LNK2001: unresolved external symbol _main(转)
  7. 《OD学Flume》20160806Flume和Kafka
  8. 全响应跨设备的Zoomla!逐浪CMS2 x2.0正式公布
  9. iptables实用教程(一):基本概念和原理
  10. javascript计算对象的长度
  11. aop难点解析。
  12. JavaEESpringMVC基础整理
  13. (ZT)算法杂货铺——分类算法之朴素贝叶斯分类(Naive Bayesian classification)
  14. sparkStreaming 与fafka直接方式 进行消费者偏移量的保存如redis 里面 避免代码改变与节点重启后的数据丢失与序列化问题
  15. pyqt5界面切换
  16. mysql索引优化比普通查询速度快多少
  17. EmguCV Image类中的函数(二)使用MorphologyEx进行更多的变换
  18. Python【知识点】面试小点列表生成式小坑
  19. Boltzmann机神经网络python实现
  20. 【算法学习】【洛谷】cdq分治 &amp; P3810 三维偏序

热门文章

  1. Swoole 实现在线聊天
  2. 向net core 3.0进击——项目发布与部署
  3. 百万年薪python之路 -- 内置函数练习
  4. nsq (三) 消息传输的可靠性和持久化[一]
  5. 云开发如何解决serverless对端的最后一公里问题
  6. DOS批量重命名
  7. Java11新特性 - Epsilon GC和ZGC
  8. Redis(三)Redis附加功能
  9. Type of the default value for &#39;songs&#39; prop must be a function
  10. 聊一聊Java中的各种运算符