编程
C码字练习.05.判断,分歧
Switch和break
循环跳出之比较
Fortran | C | 意味 |
---|---|---|
exit | break; | 跳出循环体至其直下 |
cycle | continue; | 跳至从头开始下一次循环 |
Goto在C中不被推荐使用(但是用起来很香)
C码字练习.04.For循环,do while循环
For循环
#include<stdio.h>
int main(void)
{
char ch;
for (ch = 'a'; ch <= 'z'; ch++) //一个括号初值终值和增量全给表示了,比while简洁
printf("The ASCII value for %c is %#x. \n", ch, ch); //%#x表示以0x的前缀显示为16进制数
return 0;
}
C码字练习.03.while循环和运算符
标准数学库
应用之一:乘方(C语言的运算符只有四则运算,没有乘方)
#include<stdio.h>
#include<math.h> //包含标准数学库(头文件<math.h>)
int main(void)
{
double d;
d = pow(3, 3);
printf("%f\n",d);
return 0;
}