#include int main() { float count=1.0; while (count != 0) { printf("%f です!\n", count); count -= 0.1; } puts("おしまい"); }