文件名称:常见的程序设计错误有:-C语言课件(精华版)
文件大小:9.03MB
文件格式:PPT
更新时间:2024-05-14 19:19:52
C,课件
常见的程序设计错误有: 把同一种类型的参数声明写成: float max( float x, y) 正确的是: float max( float x, float y ) 或: float max( x, y ) float x, y ; 在定义函数时, 在右圆括号后使用分号。 如: float max(float x, float y) ; × ×