Jump to content

Ryan Sony

Member
  • Posts

    11
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Contact Methods

  • Steam
    ryansony
  • Xbox Live
    xXRyanSonyXx

Profile Information

  • Gender
    Male
  • Location
    Gurgaon

System

  • CPU
    Pentium 4
  • Motherboard
    Some old Intel mobo (dont remember
  • RAM
    512mb
  • GPU
    NA
  • Case
    random cheapo case
  • Storage
    2x Samsung 256GB
  • PSU
    350 watt
  • Display(s)
    Samsung Syncmaster 223bw 1600x900
  • Cooling
    Stock
  • Keyboard
    Samsung Membrane
  • Mouse
    Samsung Optical
  • Sound
    Sound Blaster 5.1
  • Operating System
    Windows XP

Recent Profile Visitors

578 profile views

Ryan Sony's Achievements

  1. Would suggest throwing in an SSD. Also, since you're playing at 1440p, I suggest you save a few bucks and go for the 4GB RX 580 and spend that money on a better cpu.
  2. Give that poor 980 guy a 1080ti after the season ends... he deserves it Linus
  3. Are Corsair ML series fans optimized for static pressure or air flow? Also, if its optimized for static pressure is it better than SP, or if its optimized of air flow, is it better than the AF series?
  4. This program is to check if a number is Automorphic (i.e. a number whose square ends in itself. example - 25*25 = 625) the logic of my program seems to be right to me, but BlueJ does not want to do anything after i enter a number, it does nothing. (PS ima noob so pls dont overwhelm me with complicated crap) here's the program: import java.io.*; public class AutomorphicNumber { //start of class public static void main(String[] args)throws IOException { //main method starts BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter number to check Automorphic or not : "); int n = Integer.parseInt(br.readLine()); //taking user input int temp=n; int d=1; while(temp>0){ //while loop to count number of digits and form multiple of 10 to do modulus division temp=temp%10; d=d*10; } //loop ends if ((n*n) % d == n) //get original number from square System.out.println("It is an Automorphic Number."); else System.out.println("It is not an Automorphic Number."); } //end of method } //end of class
  5. Im confused between the RX 480 4gb and the RX 470 8gb. Both are the same price in my country(MSI Gaming X versions).
  6. oh, so there is an oc mode for RAM speed? cause it says 8108 mhz in OC mode i f***** up. sorry.
  7. My potato PC (not kidding):

    Pentium 4

    Some old Intel mobo (dont even remember)

    512 mb RAM

    Floppy drive

    DVD drive

    2x Samsung 128gb hdd 5400rpm 

    Ethernet card(yup, the mobo didnt even have ethernet)

    Creative Sound blaster 5.1

    No graphics card

     

    I'm using my laptop in case you're wondering how i ever got online in time.. 

×