Run ID:89132

提交时间:2024-08-22 15:11:52

#include<iostream> using namespace std; int main(){ int d,e,f,a,b,c; a=5; b=10; c=15; d=a*9.8; e=b*9.8; f=c*9.8; cout<<d<<endl; cout<<e<<endl; cout<<f<<endl; }