- 博客(6)
- 收藏
- 关注
原创 练习三种循环
上机内容:C程序的编写和运行 上机目的:练习三种循环的使用 我的程序: #include <stdio.h> int main() { int sum=0,i; for(i=2;i<=1000;i++) { if(i%2==0) sum+=i; } printf("%d",sum); return 0; } #include <st...
2020-02-16 19:35:25 189
原创 三目运算符
上机内容:C程序的编写和运行 上机目的:练习三目运算符的使用 我的程序: #include <stdio.h> int main() { int a=2; int c=3; int b=(a>c)?a:c; printf("%d",b); return 0; } 运行结果: 心得体会:通过简单的三目运算符的练习,来比较两个数的大小,从中学习...
2020-02-11 17:52:35 127
原创 一元二次方程
上机内容:C程序的编写和运行 上机目的:练习方程的求解问题 我的程序: #include <stdio.h> #include <math.h> int main() { float a,b,c,d,x1,x2,m,n; scanf("%f%f%f",&a,&b,&c); if(a==0) { if(b!=0) { prin...
2020-02-06 19:02:50 323
原创 转义字符训练
上机内容:C程序的编写和运行 上机目的:练习转义字符 我的程序: #include <stdio.h> int main() { int m1,m2,m3,m4; scanf("%d %d %d %d",&m1,&m2,&m3,&m4); char a='a',b='b',c='c'; printf("%d\t %d\t %d\t %d\t\n"...
2020-02-05 19:31:37 497
原创 给小惠买玫瑰
上机内容:C程序的编写和运行 上机目的:练习C 问题描述:问题描述:要求:小慧过生日,小明(小明真忙)要买鲜花送她。每枝红玫瑰5元,满5支送1枝,满20枝送5枝。小明一共有n(n>10)元钱,最多能买到多少? 样例输入:135 样例输出:33 我的程序: #include <stdio.h> int main() { int n1,n2,n3,n; int sum; sca...
2020-02-04 15:55:21 185
原创 数据类型转换
上机内容:C程序的编写和运行 上机目的:掌握简单C程序的编辑、编译、连接和运行的一般过程 我的程序:#include <stdio.h> int main() { double a; scanf("%lf",&a); int b,c; b=a; c=(a-b)*1000; printf("%d %d",b,c); return 0; } 运行结果: 心得体会:该题目难度不大,主...
2020-02-03 19:11:46 134
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人