Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.
revAdmin (Created page with "One possible solution: <syntaxhighlight lang="C"> #include<stdio.h> int main(void) { int n; scanf("%d",&n); for(int i=0;i<n;i++) { for(int j=0;j<=i;j++) putchar(42); putchar(10); } while((n=getchar())!=10); getchar(); return 0; } </syntaxhighlight>")May 13'24 at 21:01+278