#includeint main() { int A,B; scanf("%d %d",&A,&B); int C=A*B; printf("%d",C); return 0; }
1打出框架模板
2根据提示内容填入程序
#includeint main(){ int A,B,C,D; scanf("%d %d %d %d",&A,&B,&C,&D); int Sum=A+B+C+D; float Average=Sum/4.0; printf("Sum = %d; Average = %0.1f",Sum,Average); return 0;}
1打出框架模式
2用float定义Average并填入程序
#includeint main(){ int A; scanf("%d",&A); float B=(A-100)*0.9*2; printf("%0.1f",B); return 0;}
1打出框架模式
2根据提示公式进行填入程序
#includeint main(){ int a,b,c,d; scanf("%d",&a); b=a/100; c=a/10%10; d=a%10; printf("%d,%d,%d",b,c,d); return 0;}
1打入框架模式
2根据提示用到/与%
3仔细检查是否正确
运行截图
第一题
第二题
第三题
第四题
本周我们学习了多种程序框图下的if型语句,深刻认识到了代码的灵活性
http://www.cnblogs.com/shupeng521/p/7688938.html
http://www.cnblogs.com/2445580912lyh/p/7696464.html
http://www.cnblogs.com/z024108/p/7670282.html