Foro de elhacker.net

Programación => Programación C/C++ => Mensaje iniciado por: 3L_GARCIAS en 31 Octubre 2022, 21:45 pm



Título: Pasar este programa en java a C
Publicado por: 3L_GARCIAS en 31 Octubre 2022, 21:45 pm
Código
  1. import java.util.*;
  2. public class Main
  3. {
  4.  public static void main(String[] args) {
  5.    int a=2,b=1,c,i;
  6.    Scanner sc=new Scanner(System.in);
  7.    System.out.println("Enter the length of lucas series:");
  8.    int len=sc.nextInt();
  9.    for(i=1;i<=len;i++){
  10.      c=a+b;
  11.      System.out.print(c+" ");
  12.      a=b;
  13.      b=c;
  14.    }
  15.  }
  16. }

MOD: Etiqueta GeSHi