write_vegvar.c

来自「超强的大尺度水文模拟工具」· C语言 代码 · 共 27 行

C
27
字号
#include <stdio.h>#include <stdlib.h>#include <vicNl.h>static char vcid[] = "$Id: write_vegvar.c,v 4.1 2000/05/16 21:07:16 vicadmin Exp $";void write_vegvar(veg_var_struct *veg, 		  int             n)/**********************************************************************  write_vegvar		Keith Cherkauer		May 29, 1996  This routine writes vegetation variables to stdout.  Used primarily  for debugging purposes.  Modifications:  5/21/96	Routine was modified to allow for variable		number of layers				KAC**********************************************************************/{  printf("Vegetation Variables: vegtype %i\n",n);  printf("\tcanopyevap  = %f\n", veg->canopyevap);  printf("\tWdew        = %f\n", veg->Wdew);  printf("\tthroughfall = %f\n", veg->throughfall);}

⌨️ 快捷键说明

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