当前位置:首页 > Software > C++ > 正文内容

数据结构

chanra1n5年前 (2020-10-28)C++5824
#include<iostream>
using namespace std;
struct books{
	char name[10];
	int num;
	float price;
}book;
int main()
{
	book.num=1;
	book.price=2.5;
	char x[10]="Hello",n;
	for(n=0;n<10;n++)
	book.name[n]=x[n];
	cout << book.name <<endl;
	cout << book.num <<endl;
	cout << book.price <<endl;
	return 0;
}


扫描二维码推送至手机访问。

版权声明:本文由我的FPGA发布,如需转载请注明出处。

本文链接:http://myfpga.cn/index.php/post/160.html

分享给朋友:

“数据结构” 的相关文章

C++的类和对象

C++的类和对象

什么是类和对象?张三找了一个女朋友,她的女朋友就是他的对象。搞笑一下,打个比方,我们都是人类,人类这个类的一个成员(对象)。怎么创建类呢?#include <iostream> using namespace std; class fenshu...

数据类型及其占用空间

数据类型及其占用空间

#include<iostream> using namespace std; int main() { cout << "The size of int is&nb...