#include <stdio.h>int main(){float 金额 = 0;printf("请输入金额");scanf_s("%f", &金额);float 找钱 = 100 - 金额;printf("找您%f元" ,找钱);}