MIPI_BaseC_WebinarFRTK/05_Lecture05/11_sqrt_p36.c

19 lines
287 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main() {
// Используя цикл while
int i=1;
while (i<=10) {
printf("%d\n",i*i);
i++;
}
/*
// Используя цикл for
int i;
for(i=1; i<=10; i++) {
printf("%d\n",i*i);
}
*/
return 0;
}