📜  伽马射线的用途 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:46.822000             🧑  作者: Mango

代码示例1
#include 
using namespace std;

int main() {
  cout << "Gamma rays are ionizing electromagnetic radiation, ";
  cout << "obtained by the decay of an atomic nucleus. Gamma ";
  cout << "rays are more penetrating, in matter, and can damage ";
  cout << "living cells to a great extent. Gamma rays are used ";
  cout << "in medicine (radiotherapy), industry (sterilization and disinfection)";
  cout << "and the nuclear industry." << endl;
  return 0;
}