fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float a,b;
  6. scanf("%f%f",&a,&b);
  7. if(a==b)
  8. printf("相等");
  9. else
  10. printf("不相等");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5312KB
stdin
0.72 28
stdout
不相等