Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~279 People Reached
Favorite Forums
Favorite Tags
java x 6
Member Avatar for vict0rjr

import java.io.*; public class AlbumFile extends Album { public static void main(String[] args) { String fileName = FileChooser.pickAFile(); String line = null; // This array holds the album's pictures Picture picArray[] = new Picture[4]; // This array holds the album pictures' captions (descriptions) String captionArray[] = new String[4]; // Create …

0
56
Member Avatar for vict0rjr

I'm creating a new class called album which is supposed to make an album and show pictures with caption. so.. Ok my problem is the methods section... i need help to set the array in the picture album and set the captions too can any one please help me out …

Member Avatar for peter_budo
0
98
Member Avatar for vict0rjr

/** * This method will ask the user for some information, create a blank picture to use as a palette and create and display the palette. */ 186 public static void main(String[] args) { 187 int redValue; 188 Scanner sc = new Scanner(System.in); 189 System.out.print("Enter a Red value: "); 190 …

Member Avatar for vict0rjr
0
125