#多用途

函数的功能要单一,不要设计多用途的函数

函数的功能要单一,不要设计多用途的函数。 1#include<iostream>2#include<time.h>34/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/5...

不要有多用途的复合表达式

例如:d=(a=b+c)+r;该表达式既求a值又求d值。应该拆分为两个独立的语句:a=b+c;d=a+r; #include<iostream>/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinput...