Long time no see
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(){
|
||||
int r = 5;
|
||||
for (int i = 1; i <= r; ++i) {
|
||||
for (int c = 0; c < i; ++c) {
|
||||
printf("$");
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user