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

数据结构

chanra1n5年前 (2020-10-28)C++5998
#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发布,如需转载请注明出处。

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

分享给朋友:

“数据结构” 的相关文章

一小时搞定C++_9

一小时搞定C++_9

什么是数组呢?顾名思义,一组数,不一定是数,也可以是char类型的字符组(我自己给char类型数组起的名字)怎么创建数组呢?int 数组名[数组成员数]; int a[3];我就创建了一个叫做a的整数数组,数组中包含3个数,我应该怎么修改a数组的值呢?a[0]=1; a[1]...

C和C++中的字符串

C和C++中的字符串

/*C风格字符串的声明和使用  #include<cstdio.h> int main() { char x[]={'H','e','l','l','o','&...