xxppivot.h

来自「基本矩阵运算 : + - *, power, transpose, trace,」· C头文件 代码 · 共 22 行

H
22
字号
/* xxppivot.h                   freeware                   xhunga@tiscali.fr  */


/* --------------------------------- FUNCTION ------------------------------  */
/* Do    :                                                                    */
/*                                                                            */


/* -------------------------------------------------------------------------- */
void pivotzeroF(fraction f)
{
  if(f.n == 0)
  {
     printf("\n The value of pivot is 0. ");
     printf("\n You must use another method.");
     printf("\n\n Press return to continue \n");
     getchar();
     exit(1);
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?