Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97886 吴梓玄 04保留两位小数 C Accepted 1 MS 208 KB 119 2024-11-16 17:23:00

Tests(10/10):


Code:

#include <stdio.h> int main() { float a, b, s; scanf("%f%f",&a,&b); s=a/b; printf("%.2f",s); return 0; }