2022年6月25日 星期六

體積、表面積計算

 #include <stdio.h>

#include <stdlib.h>


/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main(int argc, char *argv[])

 {

int h,w,d;

scanf("%d %d %d",&h,&w,&d);//會不會+-*/讀資料掃瞄資料進來 

printf("%d ",(h*w + w*d + d*h)*2);//會不會印表機印資料出來 

printf("%d ",h*w*d); 

return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...