标签:enter strong int info while 答案 描述 can clu
一行两个空格隔开的数a和b。
输出a除以b的余数(答案保留两位小数)。
3 2
1.00
1 #include <stdio.h> 2 int main() 3 { 4 double a, b; 5 scanf("%lf%lf", &a, &b); 6 while(a > b) 7 { 8 a=a-b; 9 } 10 printf("%.2lf", a); 11 return 0; 12 }
标签:enter strong int info while 答案 描述 can clu
原文地址:http://www.cnblogs.com/Victor-ZhaoYiWei/p/6986022.html