Posts

Showing posts from July, 2023

Month name using method in java by Indranil Bhattacharjee

Image
Welcome My Study Global This is the output of  Month name using method in java. Month name print with string and using method in java. This problem source code is provide by Indranil Bhattacharjee. This is the correct code .If it is helpful for you then please share this web link.   class Moth_name { public static void main ( String [] args ) {         String month1 = month_name ( 1 );         String month2 = month_name ( 2 );         String month3 = month_name ( 3 );         String month4 = month_name ( 4 );         String month5 = month_name ( 5 );         String month6 = month_name ( 6 );         String month7 = month_name ( 7 );         String month8 = month_name ( 8 );         String month9 = month_name ( 9 );         String month10 = month...

(Area Calculator) Java Programming by Indranil Bhattachajee.

Image
Welcome to Study Global This the output Chose 5 exit the program.  Area Calculator in java import java . util . Scanner ; public class Area_Calculator {     public static void main ( String args []) {         int shape , result ;         double a ;         Scanner sc = new Scanner ( System . in );         while ( true ) {             System . out . println ( "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= \n " );             System . out . println ( "1) Triangle" );             System . out . println ( "2) Rectangle" );             System . out . println ( "3) Square" );             System . out . println ( "4) Circle" );             System . out . println ( "5) Quit" );           ...
Image
               Welcome to Study Global    Keychain Program in java by Indranil Bhattacharjee.                  Keychain a shop import java . util . Scanner ; class Key_chain {     public static void main ( String [] args ) {         System . out . println ( "\nYe Olde Keychain Shope" );         while ( true ){         System . out . println ( "1. Add Keychains to Order" );         System . out . println ( "2. Remove Keychains from Order " );         System . out . println ( "3. View Current Order" );         System . out . println ( "4. Checkout \n " );             System . out . print ( "Please  enter your choice:" );         Scanner sc = new Scanner ( System . in );        ...