mirror of
https://github.com/Comp211-SP24/lab-01-Rushilwiz.git
synced 2025-05-24 10:19:50 -04:00
chore: formatting
This commit is contained in:
parent
15f7544677
commit
c36c240319
|
@ -1,13 +1,14 @@
|
||||||
// PID: 730677144
|
// PID: 730677144
|
||||||
// I pledge the COMP 211 honor code.
|
// I pledge the COMP 211 honor code.
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
char c;
|
char c;
|
||||||
while ((c = getchar()) != EOF) {
|
while ((c = getchar()) != EOF) {
|
||||||
if (64 < c && c < 91) c += 32;
|
if (64 < c && c < 91)
|
||||||
|
c += 32;
|
||||||
putchar(c);
|
putchar(c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
// PID: 730677144
|
// PID: 730677144
|
||||||
// I pledge the COMP 211 honor code.
|
// I pledge the COMP 211 honor code.
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
int lines[100];
|
int lines[100];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user