Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. H

    problem in adding coins between pipes and adding to the score

    using UnityEngine; public class Player : MonoBehaviour { private SpriteRenderer spriteRenderer; public Sprite[] sprites; private int spriteIndex; public GameObject particle; public float strength = 5f; public float gravity = -9.81f; public float tilt = 5f...
  2. H

    Java pattern problem

    public class LoopingProblemE { public static void main(String[] args) { int TOTAL_ROWS=4; int TOTAL_COLUMNS=4; int TOTALC=4; int TOTALR=1; for(int j=1;j<=TOTAL_COLUMNS;j++){ for (int i=1;i<-TOTAL_ROWS;i++) {...
  3. H

    Java Increment/Decrement in Java

    Hello coders.. I just started learning java... please help me with this question given below. Write a program to decrement the value of variable total 5 times and then increment it 5 times..using the following variable name and value The decrementing/incrementing counter value is 1.0 float...
  4. H

    Api problem

    Hello coders, i have just started learning android development And Im having a slight problem regarding choosing the api for my java app... the recent api should be 15(ice-cream sandwich)...but i only have option till api 16(jelly bean)...so its available for 99.8% devices...i wanna make it...
Back
Top Bottom