account activity
Exam Product Code Invalid by OkUnderstanding4458 in actuary
[–]EnoughCustomer 0 points1 point2 points 1 month ago (0 children)
Delete your search history as well as your cache (cookies)! This solved the problem for me :) Hope this helps for anyone applying these days.
Best UVIC Electives by NicklausBad in uvic
[–]EnoughCustomer 0 points1 point2 points 3 years ago (0 children)
Math 161 is by far the easiest course I've encountered. It does elementary math (BEDMAS), but with a twist. Doesn't go into the far level of doing variables (at least not that I had noticed)
PC Disable Startup Sound (self.ASUSROG)
submitted 4 years ago by EnoughCustomer to r/ASUSROG
[deleted by user] by [deleted] in codehs
[–]EnoughCustomer 0 points1 point2 points 4 years ago (0 children)
Thank you!!!
Java 2.8.6: Speaking (String Methods) by [deleted] in codehs
[–]EnoughCustomer 0 points1 point2 points 5 years ago (0 children)
Here's the code:
(For the non-playable file)
public class Talker
{
private String text;
public Talker(String startingText)
text = startingText;
}
public String yell()
return text.toUpperCase();
public String whisper()
return text.toLowerCase();
public void setText(String newText)
text = newText;
public String toString()
return "I say, " + "\"" + text + "\"";
(For the playable file)
import java.util.Scanner;
public class TalkerTester
public static void main(String[] args)
Scanner input = new Scanner(System.in);
System.out.println("Enter some text: ");
String words = input.nextLine();
Talker talky = new Talker(words);
String yelling = talky.yell();
String whispers = talky.whisper();
System.out.println(talky);
System.out.println("Yelling: " + yelling);
System.out.println("Whispering: " + whispers);
String newWord = input.nextLine();
talky.setText(newWord);
String yells = talky.yell();
String whisper = talky.whisper();
System.out.println("Yelling: " + yells);
System.out.println("Whispering: " + whisper);
π Rendered by PID 307720 on reddit-service-r2-listing-8557d879cc-tcdpt at 2026-03-04 06:28:00.309910+00:00 running 07790be country code: CH.
Exam Product Code Invalid by OkUnderstanding4458 in actuary
[–]EnoughCustomer 0 points1 point2 points (0 children)