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

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

时间:2018-08-03 14:18:43      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:ons   str   har   scanf   声明   space   console   oat   argv   

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

 

 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 }

 

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

标签:ons   str   har   scanf   声明   space   console   oat   argv   

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

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