有魅力大地

文章
6
资源
1
加入时间
2年10月17天

TQ210——S5PV210 uboot顶层config.mk分析

## (C) Copyright 2000-2006# Wolfgang Denk, DENX Software Engineering, wd@denx.de.## See file CREDITS for list of people who contributed to this# project.## This program is free software;

C语言——while循环的练习,if-else的嵌套使用

使用while语句,计算1-100的累加和:int addnum(void) { int i, sum = 0; i = 1; while (i<=100) { sum += i; i++; } printf("%d\n", sum); return 0;}然后在含有main()的源程序中引入文件后调用该方法计算1-10的阶乘的和 利用while循环实现int JCH() { int sum, result, num;//声明变量保存和的变量sum,保存乘积