帮忙解决一道C语言的题目,谢谢! main() { float c,f; c=30.0; f=(6*c)/5+32; printf("f=%f",f); }
帮忙解决一道C语言的题目,谢谢! main() { float c,f; c=30.0; f=(6*c)/5+32; printf("f=%f",f); }
日期:2021-06-21 20:05:59 人气:1
#include<stdlib.h>
#include<stdio.h>
int main()
{
float c,f;
c=30.0;
f=(6*c)/5+32;
printf("f=%f",f);
system("pause&q