Exercise


May 13'24

Answer

One possible solution: #include

int main(void) {

 int n;
 scanf("%d",&n);
 for(int i=0;i

}

00