Created
March 4, 2015 22:00
-
-
Save Ilyes-Hammadi-Ahmed/f9da04748f07ae740fef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.company; | |
| public class Main { | |
| public static void main(String[] args) { | |
| // write your code here | |
| // apelle de la methode | |
| System.out.println(somme(1, 1)); | |
| } | |
| // creation d'une methode qui somme deux nombre | |
| public static float somme(float a, float b){ | |
| return a + b; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment