[此贴子已经被作者于2005-6-30 13:19:26编辑过]
在线等答案 本人也是新手 和楼主问题如出一辄 请各位大哥给答案
伪码不会呀,只会直接写
等下
#include <stdio.h>#include <conio.h>void main(){ float c,f;
scanf("%f",&c); printf("f=%.2f\n",c/5*9+32); getch();}
#include <stdio.h>#include <conio.h>void main(){ float physcore,bioscore,chescore,sum,aver;
scanf("%f%f%f",&physcore,&bioscore,&chescore); sum= physcore+bioscore+chescore; aver=sum/3;
printf("sum=%.2f\naver=%.2f\n",sum,aver); getch();}