double a, b, c
scanf("%lf %lf", &a, &b)
c = sqrt(fabs(a-b))
printf("%.1f\n", c)
2.
char c
scanf("%c", &c)
printf("%d", c)
3.
int a, b, c, max
scanf("%d %d %d", &a, &b, &c)
max = a >b ? a : b
max = max >c ? max : c
if (max >25) printf("YES")
else printf("NO")
4.
int m=0,n=0
char x
scanf("%c", &x)
if (x>='a' &&x<='z') {m=1n=2}
else {m=2n=1}
printf("m:%d, n:%d\n", m, n)
5.
double f
int n
scanf("%d", &n)
if (n<10) f=15*n
else if (n>=10 &&n<50) f=15*n*0.95
else if (n>=50 &&n<100) f=15*n*0.85
else f=15*n*0.8
printf("price:%.1f\n", f)
6.
int i
char c
for(i=1i<=6i++) {
printf("子女%d:",i)
scanf("%c", c)
switch (c) {
case 'A': printf("iron")break
case 'B': printf("silver")break
case 'C': printf("bronze")break
case 'D': printf("gold")break
case 'E': printf("land")break
default: printf("error")break
}
}
#include "stdio.h"void main(){
float a[10]
for (int i=0i<10i++)
scanf("%f",&a[i])
for (i=0i<10i++)
if (a[i]>0)
printf("%f",a[i])
}
代码输入完后按F2来存盘。要进行编译最简单的是按F9用MAKE实用程序,编译并且连接生成EXE文件。此时如果程序中有错误,编译器会在底下的消息窗口给出错误信息,光标移到消息条上,按ENTER或F6可回到编辑窗再修改程序。可以通过设置断点和监视项来调试程序。
可以按F8或F7单步执行程序。
F10可以从EDIT切换到菜单栏. F1 : 打开帮助 F2 : 保存文件 F3 : 打开文件 F5 : 缩放窗口
Alt+F5 : 查看输出 F7 : 单步跟踪 F8 : 跟踪执行
Alt+F9 : 编译文件 F9 : Make文件 Ctrl+F9 : 编译运行
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)