Happy About the progress
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
// Prompts user for n.
|
||||
|
||||
#include <cs50.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int n = get_int("What's n? ");
|
||||
|
||||
for (int i = 0; i < n; i++)
|
||||
{
|
||||
printf("meow\n");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user