摘要: 瀑布模型 快速原型模型 增量模型 螺旋模型 喷泉模型 Rational 统一过程 敏捷过程与极限编程 微软过程 阅读全文
posted @ 2019-02-18 18:34 于云震 阅读(135) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){ int A,B; scanf("%d%d",&A,&B); printf("%d\n",A+B); return 0;} 阅读全文
posted @ 2019-02-18 11:40 于云震 阅读(126) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){ int s=0,n; scanf("%d",&n); for(int i=1;i<=n;i++) { s+=i; } printf("%d\n",s);} 阅读全文
posted @ 2019-02-18 10:56 于云震 阅读(414) 评论(0) 推荐(0)
摘要: #include<stdio.h>#define PI 3.1415926int main(){ double r; scanf("%lf",&r); double area(double r); printf("%.7lf",area(r)); return 0;}double area(doub 阅读全文
posted @ 2019-02-18 10:48 于云震 阅读(222) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){int x;scanf("%d",&x);int f(int n);printf("%d\n",f(x));}int f(int n){int s;if(n==1||n==2){s=1;}elses=f(n-1)+f(n-2);return s 阅读全文
posted @ 2019-02-18 10:37 于云震 阅读(511) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2019-02-18 10:36 于云震 阅读(1) 评论(0) 推荐(0)