C语言是一门非常常用的编程语言,它非常适合处理底层的硬件控制和嵌入式系统开发等。本文将为大家介绍一些常见的C语言代码。
1. Hello World
这是最简单的C语言程序:
```
#include
int main() {
printf("Hello World");
return 0;
}
```
2. 计算两数之和
这是一个简单的演示如何使用变量和运算符的例子:
```
#include
int main() {
int a, b, sum;
printf("Enter two numbers to add: ");
scanf("%d%d", &a, &b);
sum = a + b;
printf("Sum of %d and %d is %d", a, b, sum);
return 0;
}
```
3. 判断奇偶数
以下代码演示如何根据用户输入的数字,判断其是否为奇数或偶数:
```
#include
int main() {
int num;
printf("Enter an integer: ");
scanf("%d", &num);
if(num%2 == 0)
printf("%d is even.",num);
else
printf("%d is odd.",num);
return 0;
}
```
4. 找出最大值
下面的代码演示了如何在三个数中找出最大值:
```
#include
int main() {
int a, b, c, max;
printf("Enter three numbers: ");
scanf("%d%d%d", &a, &b, &c);
if(a > b && a > c)
max = a;
else if(b > a && b > c)
max = b;
else
max = c;
printf("Max of %d, %d and %d is %d", a, b, c, max);
return 0;
}
```
5. 计算阶乘
以下代码演示了如何计算一个数的阶乘:
```
#include
int main() {
int num, i, fact = 1;
printf("Enter an integer: ");
scanf("%d", &num);
for(i=1; i<=num; i++)
fact *= i;
printf("Factorial of %d is %d", num, fact);
return 0;
}
```
6. 判断字符串是否回文
下面的代码演示如何判断一个字符串是否回文:
```
#include
#include
int main() {
char str[100];
int i, len;
printf("Enter a string: ");
gets(str);
len = strlen(str);
for(i=0; i if(str[i] != str[len-i-1]) { printf("%s is not a palindrome", str); return 0; } } printf("%s is a palindrome", str); return 0; } ``` 以上这些代码只是C语言代码的冰山一角,我们可以在C语言中编写更加复杂和有用的程序。通过学习这些例子,可以让我们更好地理解C语言的基础知识和编程思路。