Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
la profe
//gcc 5.4.0 /* NOMBRE: CRISTIAN IGNACIO TAPIA SALAS FECHA: 08/28/2017 TITULO: "Seleccion de Problemas" PROPOSITO: Saber cuantas opciones tiene de combinar los problemas la profesora. */ #include <stdio.h> #include <string.h> int main(void){ int n,l,r,i,j,k,q,sum,cont; scanf("%d %d %d",&n,&l,&r); int P[n]; for(i=0;i<n;i++){ scanf("%d",&P[i]); } cont=0; if(n>=2){ for(i=0;i<n-1;i++){ for(j=0;j<n && j+i+1<=n;j++){ sum=0; for(q=j;q<j+i+1;q++){ sum=sum+P[q]; } for(k=j+i+1;k<n;k++){ if(sum+P[k]>=l && sum+P[k]<=r){ cont++; printf("%d\n",sum); } } for(k=j-1;k>0 && i>0 ;k--){ if(sum+P[k]>=l && sum+P[k]<=r){ cont++; printf("%d\n",sum); } } } } printf("%d",cont); } else printf("%d",0); return 0; }
run
|
edit
|
history
|
help
0
Spring 2017 Project 2 v1.5
18BCE2182 ASSESS_1 Q1-6
Finite State Machine Program Example (ECE 2534)
1/23/2017
problemapi2
AVANCE DE PREGUNTA 5
T3.C
example of scanf and basic integer manipulation
Linked List demo in C
Array Struct, Call-By-Reference, Malloc, Free, Init, Destroy ... Example