登录 注册
当前位置:主页 > 资源下载 > 学习c++课件时,请修正其中的程序错误

学习c++课件时,请修正其中的程序错误

  • 更新:2024-08-24 15:27:20
  • 大小:152KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:BlackBerry - 移动开发
  • 格式:PPT

资源介绍

修改下面程序中的错误: #include class TDate { private : int year, month, day; public : void SetDate(int y, int m, int d) { year=y; month=m; day=d; } }; void main() { TDate d1; d1.SetDate(2004,10,8); cout <