-
Notifications
You must be signed in to change notification settings - Fork 0
Element
Mister Mjir edited this page Dec 23, 2019
·
1 revision
The element struct.
#ifndef ELEMENT
#define ELEMENT
#include <string>
struct Element
{
std::string name;
std::string symbol;
uint8_t atomicNumber;
int8_t period;
int8_t group;
float electronegativity;
short int radius;
};
#endifMake sure you cast uint8_t and int8_t datatypes to int if you want to print them in std::cout or something, just remember that they are treated as chars.
V 2.2.0