标签:运用 a* mil nbsp img ase 关键字 put 简单
#include<stdio.h> main() { int a,b,c,d; printf("Please enter a,b:"); scanf("%d %d",&a,&b); c=a+b; d=a*b; printf("c=%d",c); printf("d=%d",d); }
出现问题:无
解决方法:无
#include<stdio.h> main() { printf("*\n"); printf("**\n"); printf("***\n"); printf("****\n"); printf("*****\n"); }
出现问题:无
解决方法:无
#include<stdio.h> main() { printf("Data Types and Sizes:\n"); printf("long:%d\n",sizeof(long)); printf("unsigned:%d\n",sizeof(unsigned)); printf("double:%d\n",sizeof(double)); }
出现问题:名词拼写出错
解决方法:多加熟悉
#include<stdio.h> #include<math.h> main() { float a,b; double x; printf("Please enter a,b:\n"); scanf("%f %f",&a,&b); x=(b+sqrt(b*b+2*a))/(a-b); printf("x=%.2f",x); }
出现问题:1.sqrt函数的运用较生疏,且不清楚要添加新的头函数<math.h>
2.对数字的类型输入还有问题
解决方法:向同学询问后清楚了相应的用法,以及了解头函数的意义
#include<stdio.h> main() { double r,h,S,V; printf("Please input r,h:"); scanf("%lf %lf",&r,&h); S=r*r*3.14; V=r*r*3.14*h/3; printf("底面积=%.2f",S); printf("体积=%.2f",V); }
出现问题:对数字的类型不理解
解决方法:对课件再次学习,理解int,double,foalt的意义
标签:运用 a* mil nbsp img ase 关键字 put 简单
原文地址:https://www.cnblogs.com/GZ-1128-XZ/p/12380516.html