+ 10
What was your Last code of 2017?
8 Respostas
+ 11
https://code.sololearn.com/cZQ4E7W8nLx2/?ref=app
+ 3
This one
https://code.sololearn.com/cXVSf5TdFD3r/?ref=app
BTW I may post another code in the time remaining :)
+ 2
class Ahsan
{
String FName;
String LName;
int ID;
Ahsan(){
this.FName= "Ahsan";
this.LName= "Kashmiry";
this.ID= 69;
}
Ahsan(String FName, String LName, int ID){
this.FName = FName;
this.LName = LName;
this.ID = ID;
}
public static void main(String[] args){
Ahsan a = new Ahsan();
System.out.println("FName = " + a.FName);
System.out.println("LName = " + a.LName);
System.out.println("ID = " + a.ID);
System.out.println("\nFName LName ID = " +a.FName+" "+a.LName+" "+a.ID);
}
}
+ 2
my last code 2k17
best of LUCK HAPPY NEW YEAR
+ 2
Calculator GUI in Java Swing (to repeat the basics of GUI programming)
+ 1
Happy New Year 2018 to all!
https://code.sololearn.com/cweTi5QbJ6N5/?ref=app
https://code.sololearn.com/cX0mbGIMFt0U/?ref=app