码迷,mamicode.com
首页 > 其他好文 > 详细

边写代码边注释,修改代码同时修改相应的注释

时间:2018-08-03 14:26:21      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:ogr   put   OLE   有用   ble   std   argc   get   nbsp   

边写代码边注释,修改代码同时修改相应的注释,以保证注释与代码 的一致性。不再有用的注释要删除。

 

 1 #include <iostream>
 2 #include<math.h> 
 3 const double HD=3.1415926/180;
 4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 5 using namespace std;
 6 
 7 int main(int argc, char** argv) {
 8     cout<<"x\tsin(x)"<<endl;
 9     for (int i=0;i<=180;i=i+30) 
10         cout<<i<<"\t"<<sin(i*HD)<<endl;
11     return 0;
12 }

 

边写代码边注释,修改代码同时修改相应的注释

标签:ogr   put   OLE   有用   ble   std   argc   get   nbsp   

原文地址:https://www.cnblogs.com/borter/p/9413357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!