#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
struct ww_service
{
char name[30];
double diameter;
double weight;
};
int main()
{
ww_service pizza;
cout << "Enter the company of this pizza: ";
cin.getline(pizza.name, 30);
cout << "Enter the diameter of the pizza: ";
cin >> pizza.diameter;
cout << "Enter the weight of the pizza: ";
cin >> pizza.weight;
cout << "The information of this pizza as follow:\n ";
cout << "Company name is: " << pizza.name << endl;
cout << "The diameter about the pizza is: " << pizza.diameter << " centimeter."<<endl;
cout << "The weight about the pizza is: " << pizza.weight <<" kilogram."<<endl;
return 0;
}