3029:练7.1 埃及金字塔
练 7.1 埃及金字塔
3029:练7.1 埃及金字塔
第10课 古埃及金字塔 《小学生C++趣味编程》
小学生C++学习视频集
小学生C++趣味编程 上机作业 每日一练 第1单元 顺序结构
scratch3代码:
C语言代码:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
scanf("%d%d",&a,&b);
float s;
s=a*b/2.0;
printf("s=%g\n",s);
return 0;
}
C++语言代码:
#include <bits/stdc++.h>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
cout<<"s="<<a*b/2;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
float ans,num;
cin>>ans>>num;
cout<<"s="<<ans*num/2.0<<endl;
return 0;
}
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<"s="<<a*1.0*b/2;
return 0;
}
python3代码(60分)
a,b=input().split()
a=int(a)
b=int(b)
s=a*b/2.0
print("s=%d\n"%s)
3051:练10.3 计算浮点数相除的余(Scratch、C、C++)
3051:练10.3 计算浮点数相除的余(Scratch、C、C++)_练10.3 计算浮点数相除的余c++-CSDN博客
3052:【例11.1】鸡兔同笼(Scratch、C、C++、python)
3052:【例11.1】鸡兔同笼(Scratch、C、C++、python)-CSDN博客
3056:练11.3 等差数列末项计算(Scratch、C、C++、python)
3056:练11.3 等差数列末项计算(Scratch、C、C++、python)-CSDN博客
3060:【例12.2】长方体表面积(Scratch、C、C++、python)
3081:【例15.2】 偶数(Scratch、C、C++、python)
3082:【例15.3】 最大数输出(Scratch、C、C++、python)
3086:【例16.1】 判断数正负(Scratch、C、C++、python)
3087:【例16.2】 开灯(Scratch、C、C++、python)
3111:练19.4 骑车与走路(Scratch、C、C++、python)
3116:练20.1 适合晨练(Scratch、C、C++、python)
3132:练22.1 闰年与平年(Scratch、C、C++、python)
文章评论