mirror of
https://github.com/Comp211-SP24/lab-01-Rushilwiz.git
synced 2025-04-09 14:30:19 -04:00
finished lower
This commit is contained in:
parent
1fd24901e0
commit
d9d4568e99
BIN
1-lower/lower
Executable file
BIN
1-lower/lower
Executable file
Binary file not shown.
|
@ -1,2 +1,13 @@
|
|||
// PID: 9DigitPidNoSpacesOrDashes
|
||||
// PID: 730677144
|
||||
// I pledge the COMP 211 honor code.
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
char c;
|
||||
while ((c = getchar()) != EOF) {
|
||||
if (64 < c && c < 91) c += 32;
|
||||
putchar(c);
|
||||
}
|
||||
}
|
||||
|
|
1
1-lower/myresult.txt
Normal file
1
1-lower/myresult.txt
Normal file
|
@ -0,0 +1 @@
|
|||
tar heels
|
Loading…
Reference in New Issue
Block a user