代码如下: #include <stdio.h> main() { char c; printf(“please input ‘0’ to ‘9’ ;”); c=getchar(); switch(c) { case ‘0’:printf(“Sundayn”);break; case ‘1’:printf(“Mondayn”);break; case ‘2’:printf(“Tuesdayn”);break; case ‘3’:printf(……
C语言中的三目运算符?:的使用往往能减少代码的书写,达到事半功倍的效果,如下面的代码,前面先定义了一个求得最大值的函数max,使用到了?:用于比较三个整型数字的大小。 #include <stdio.h> int max(int x,int y,int z) { int m; m=(x>y)?x:y; /*当x>y为真时,m取x的值,为假时取y的值 */ m=(m>z)?m:z; return m; } main() { int a,b,c,m; scanf(“%d,%……
C语言中if控制语句的例子 第一个例子,三个数中求最大的: #include <stdio.h> main() { int a,b,c; int max; printf(“input 3 values of integer:”); scanf(“%d%d%d”,&a,&b,&c); if(a>b) max=a;else max=b; if(max<c) max=c; printf(“the max of %d,%d,%d is %d n”,a,b,c,max); } 第二个例……
pwgen和mkpasswd都有自己动生成密码文件的功能。而且mkpasswd可以自动更改密码到指定用户。两者的区别如下: 1、pwgen的用法 1Usage: pwgen [ OPTIONS ] [ pw_length ] [ num_pw ] 2Options supported by pwgen: 3 -c or --capitalize 4 Include at least one capital letter in the password 5 -A or --no-capitalize 6 Don't include capital letters in the password 7 -n or --numerals 8 Include at least one number in the password 9 -0 or --no-numerals 10 Don't include numbers in the password 11 -y or --symbols……