首页 > 其他 > 详细

注释是对代码的“提示”,而不是文档

时间:2018-08-03 12:33:53      阅读:150      评论:0      收藏:0      [点我收藏+]

注释是对代码的“提示”,而不是文档。程序中的注释不可喧宾夺主, 注释太多了会让人眼花缭乱。注释的花样要少。

 

 1 #include <iostream>
 2 #include<stdlib.h>
 3 
 4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 5 using namespace std;
 6 int main(int argc, char** argv) {
 7         //声明变量
 8     char ch;
 9     char str[20];
10     int n;
11     float x;
12 
13     //用stdin从键盘上输入数据
14     fprintf(stdout,"ch str\n");
15     fscanf(stdin,"%c %s",&ch,str);
16     fprintf(stdout,"n    x \n");
17     fscanf(stdin,"%d  %f",&n,&x);
18     cout<<"----------------"<<endl;
19 
20     //输出显示
21     fprintf(stdout,"ch=%c str=%s",ch,str);
22     fprintf(stdout,"\nn=%d x=%f",n,x);
23     cout<<endl;
24     return 0;
25 }

 

注释是对代码的“提示”,而不是文档

原文:https://www.cnblogs.com/borter/p/9413339.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!