Created
April 18, 2022 19:44
-
-
Save Furkan-Gulsen/07d3afd69c80d7a4cabd5416982fe825 to your computer and use it in GitHub Desktop.
This file contains 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 Giris; | |
import java.util.Scanner; | |
public class Baslangic { | |
public static void main(String args[]) { | |
Scanner scanner=new Scanner(System.in); | |
int sayi1=scanner.nextInt(); | |
for (int i=0;i<=sayi1;i++) | |
{ | |
if(i%12==0) | |
System.out.println(i); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment