Search:

Type: Posts; User: xyldon27

Search: Search took 0.10 seconds.

  1. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    *
    *
    *
    *
    *
    *
    *
    *
    *
    *
  2. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    for(int av=ct1;av>=1;av--){
    System.out.println(" * ");
    }



    for(int bv=ct2;bv>=1;bv--){
    System.out.println(" \t* ");}
    for(int cv=ct3;cv>=1;cv--){...
  3. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    *
    *
    *
    *
    *
    *
    *
    *
    *
    *
  4. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    Thanks. I got confuse with the printf
  5. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    run:
    How many Students? :
    40
    Enter Grade :
    11
    Enter Grade :
    11
    Enter Grade :
    11
    Enter Grade :
  6. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    inside the do while loop or i will create a new one?
  7. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    how can i convert an integer of 3 to a three asterisk(***) ?
  8. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    run:
    Enter Grade:
    79
    Enter Grade:
    89
    Enter Grade:
    86
    Enter Grade:
    45
    Enter Grade:
  9. Replies
    20
    Views
    2,205

    Re: how to count and print asterisk.

    run:
    Enter Grade:
    1
    Enter Grade:
    2
    Enter Grade:
    3
    Enter Grade:
    4
    Enter Grade:
  10. Replies
    20
    Views
    2,205

    how to count and print asterisk.

    int ct=0;
    BufferedReader input=new BufferedReader(new InputStreamReader(System.in));
    do {


    System.out.println("Enter Grade:");
    int grade=0;
    grade =...
  11. [SOLVED] Re: another activity that i need some guidance

    it work thank u so much.. cheers for Truffy
  12. [SOLVED] Re: another activity that i need some guidance

    I'LL TEST IT RIGHT AWAY ^_^ THANK YOU SO MUCH
  13. [SOLVED] Re: another activity that i need some guidance

    thanks.. i really need it.. because my heads hurts today because of the heat of the sun.. but still im trying to figure it out..
  14. [SOLVED] Re: another activity that i need some guidance

    can someone help me or assist me please.....^:)^
  15. [SOLVED] Medication of ArrayDemo.java to include iterative menu

    Activity 1-1
    Modify ArrayDemo.java to include this iterative menu:

    [1] Display contents of the array using for loop (by index, ascending)
    [2] Display contents of the array using do loop (by...
  16. [SOLVED] Re: i am a student.. need help in my activities today

    thanks.. i am very thankful for this site.. i will learn lots of things here..
  17. [SOLVED] Re: i am a student.. need help in my activities today

    import java.io.*;

    public class ActivityFourDashThree {

    public static void main(String[] args) throws Exception {

    BufferedReader br = new BufferedReader(new...
  18. [SOLVED] Re: i am a student.. need help in my activities today

    import java.io.*;

    public class ActivityFourDashThree {

    public static void main(String[] args) throws Exception {

    BufferedReader br = new BufferedReader(new...
  19. [SOLVED] Re: i am a student.. need help in my activities today

    thank you.. just got confused with the codes in my head,,, i'll proceed to the next activity
  20. [SOLVED] Re: i am a student.. need help in my activities today

    import java.io.*;

    public class ActivityFourDashOne
    {
    public static void main(String[]args)
    {

    BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); ...
  21. [SOLVED] Help me with different activities in Java program

    Example 4-1



    public class FourDashOne{
    public static void main(String[] args){
    int grade = 68;
    if( grade > 60 ){
    System.out.println("Congratulations!");
    System.out.println("You...
Results 1 to 21 of 21