#include "stdio.h" main() { int i; float s=0; i=1; while (s<100) { s=3.14*i*i; printf("%-8.2f",s); i++; } }
while ((s=3.14*i*i)<100) { printf("%-8.2f",s); i++; }