Skip to content
Maennche Software Development logo
  • Home
  • Marketing
    • Marketing – vCMO
  • Expertise
    • Development
      • Software Development
      • Salesforce Development
      • WordPress Plugin Development
      • Full-Stack Web Development
    • Automation
    • Business Coach
    • About Matthew Maennche
  • Blog
  • Solution Maps
    • C++ Solution Map
    • Java Solution Map
    • Python Solution Map
    • Visual Basic Solution Map
  • FAQ
  • Contact
  • Log In
×
  • Home
  • Marketing
    • Marketing – vCMO
  • Expertise
    • Development
      • Software Development
      • Salesforce Development
      • WordPress Plugin Development
      • Full-Stack Web Development
    • Automation
    • Business Coach
    • About Matthew Maennche
  • Blog
  • Solution Maps
    • C++ Solution Map
    • Java Solution Map
    • Python Solution Map
    • Visual Basic Solution Map
  • FAQ
  • Contact
  • Log In

Given an int variable k that has already been declared, use a for loop to print a single line consisting of 97 asterisks. Use no variables other than k.

LANGUAGE: JAVA

CHALLENGE:

Given an int variable k that has already been declared, use a for loop to print a single line consisting of 97 asterisks. Use no variables other than k.

SOLUTION:

for(k=1;k<=97;k++){
   System.out.print("*");
}

Posted in Java, Learn To Code, Solution Maps

Posts navigation

← Given int variables k and total that have already been declared, use a do…while loop to compute the sum of the squares of the first 50 counting numbers, and store this value in total. Thus your code should put 1*1 + 2*2 + 3*3 +… + 49*49 + 50*50 into total. Use no variables other than k and total.
Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a for loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j. →

Additional Resources

Account

Frequently Asked Questions

Privacy Policy

Terms and Conditions

Matthew Maennche logo icon

Get In Touch!

1216 E. Kenosha St Suite 273, Broken Arrow, OK 74012

(918) 352-6109

© 2017 - 2023 Maennche Software Development. All Rights Reserved.

Scroll To Top