yris_latteyi

joined 2 months ago
[–] yris_latteyi@lemmy.zip 2 points 1 day ago

oughhh right, thanks for pointing that out!!

[–] yris_latteyi@lemmy.zip 1 points 2 days ago

Thank you so much for your time! Holy shit you went deep there, even optimized it😭 I'm 4ever grateful, gotta go try it, be back with results!

[–] yris_latteyi@lemmy.zip 2 points 2 days ago

The site where I submit my answers only inputs four digit positive numbers so idk either ¯_(ツ)_/¯

[–] yris_latteyi@lemmy.zip 1 points 2 days ago (1 children)

The site that accepts & checks this code is programmed to only input 4 digit inputs so i didn't account for any other options

[–] yris_latteyi@lemmy.zip 1 points 2 days ago

Thank you for your reply!! I'll look into it! Although I don't think I'll be able to make it a function(I've been procrastinating studying that topic🫠)

 

Hi! I've recently started learning C and I've been getting stuck on the basic tasks cuz I keep overcomplicating them T-T Could anyone please help me with this specific task?

Problem Statement

You have a digit sequence S of length 4. You are wondering which of the following formats S is in:

  • YYMM format: the last two digits of the year and the two-digit representation of the month (example: 01 for January), concatenated in this order
  • MMYY format: the two-digit representation of the month and the last two digits of the year, concatenated in this order

If S is valid in only YYMM format, print YYMM; if S is valid in only MMYY format, print MMYY; if S is valid in both formats, print AMBIGUOUS; if S is valid in neither format, print NA.

Constraints
- S is a digit sequence of length 4.

Sample Input 1
1905

Sample Output 1
YYMM
May XX19 is a valid date, but 19 is not valid as a month. Thus, this string is only valid in YYMM format.

Sample Input 2
0112

Sample 2
AMBIGUOUS
Both December XX01 and January XX12 are valid dates. Thus, this string is valid in both formats.

Sample Input 3
1700

Sample Output 3
NA
Neither 0 nor 17 is valid as a month. Thus, this string is valid in neither format.

The code I wrote for this is:

#include <stdio.h>

int main(){
    int S;
    scanf("%d", &S);
    int p1 = S/100;
    int p2 = S%100;
    if (p1!=0 && p1<=12){
        if(p2!=0 && p2<=12){
            printf("AMBIGUOUS");
        }
        else if (p2>=13){
            printf("MMYY");
        }
        else{
            printf("NA");
        }
    }
    else if (p1>=13){
        
        if(p2!=0 && p2<=12){
            printf("YYMM");
        }
        else {
            printf("NA");
        }
    }
   return 0;
}

It passed the 7 checks in the system, but failed on the 8th and I have no idea what kind of values are on the 8th check... Thanks to anyone for reading this far!

[–] yris_latteyi@lemmy.zip 3 points 1 month ago

I use NewPipe on mobile and freetube on desktop, although you probably considered them since they're often recommended first when you just start looking into youtube alternatives

[–] yris_latteyi@lemmy.zip 2 points 1 month ago (1 children)

Totally! Plus anything simple that can be boiled can be made in a rice cooker too! In china rice cookers are often advertised as multifunctional, and they definitely are. Sometimes I cook meat in mine, when I absolutely have no time to stand and watch it cook whatsoever. Whoever created rice cookers is a damn genius, I'm so grateful to them 💗

[–] yris_latteyi@lemmy.zip 2 points 1 month ago (3 children)

Ricecookers are a blessing in this way

[–] yris_latteyi@lemmy.zip 2 points 1 month ago

Sir, you just opened my eyes to how games work. To this day, I thought games for family were supposed to be played for the game, and I don't get crazy upset about losing outwardly, but the unpleasant feeling that ruins my mood personally stays oftentimes, and now O see why. Holy moly

[–] yris_latteyi@lemmy.zip 2 points 1 month ago (1 children)

Beautiful. I absolutely adore the sketching and shadow lines, and the anatomy is just so wonderful. Great job!

[–] yris_latteyi@lemmy.zip 3 points 1 month ago

Yeah, I'm friends with 2, we were in a poly relationship and I quit. My mentall health was awful which was affecting my relationships with them, so I distanced away for like 2 years. Now we speak regularly, share some news and stories, they even wanna invite me to their wedding, I'm so happy for them🥹

[–] yris_latteyi@lemmy.zip 2 points 1 month ago

Thanks! I'll check it out!

view more: next ›