2018年11月27日

摘要: #include <stdio.h>int main(){ float x,y; scanf("%f",&x); if(x==0) { printf("f(0.0) = 0.0"); } else{ y=1/x; printf("f(%.1f) = %.1f",x,y); } return 0; } 阅读全文
posted @ 2018-11-27 19:50 章宇楠 阅读(271) 评论(13) 推荐(0) 编辑

导航