chore: formatting

This commit is contained in:
Rushil Umaretiya 2024-02-05 03:10:45 -05:00
parent 15f7544677
commit c36c240319
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 7 additions and 6 deletions

View File

@ -1,13 +1,14 @@
// PID: 730677144
// I pledge the COMP 211 honor code.
#include <stdlib.h>
#include <stdio.h>
#include <stdlib.h>
int main() {
char c;
while ((c = getchar()) != EOF) {
if (64 < c && c < 91) c += 32;
if (64 < c && c < 91)
c += 32;
putchar(c);
}
}

View File

@ -1,8 +1,8 @@
// PID: 730677144
// I pledge the COMP 211 honor code.
#include <stdlib.h>
#include <stdio.h>
#include <stdlib.h>
int main() {
int lines[100];
@ -11,16 +11,16 @@ int main() {
total = 0;
chars = 0;
cur = 0;
while ((c = getchar()) != EOF) {
chars++;
if (c == '\n') {
chars = 0;
chars = 0;
cur++;
putchar(c);
} else if (chars > 50) {
if (total == 0 || lines[total-1] != cur) {
if (total == 0 || lines[total - 1] != cur) {
lines[total] = cur;
total++;
}