Generation

generate functionMon, 17 Apr 2023

Bucle decreciente de 100 a 1 con while

#include<stdio.h> int main() { int x; x=100; while(x>0){ printf("%d \n", x); x--; } return 0; }

Want to kickstart your project?Use the new AI Studio to create your code