Advertisement
icarussiano

Untitled

Nov 26th, 2022
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. #include <stdio.h>
  2. int main() {
  3. //ESERCIZIO 1 CALCOLA IL MAX E IL MIN DI 5 NUMERI(SENZA CICLI)
  4. int n1,n2,n3,n4,n5;
  5. printf("Inserisci 5 numeri\n");
  6. scanf("%d %d %d %d %d",&n1,&n2,&n3,&n4,&n5);
  7. if(n1>n2 && n1>n3 && n1>n4 && n1>n5)
  8. {
  9. printf("n1(%d) è il massimo",n1);
  10. }
  11. else if(n2>n3 && n2>n4 && n2>n5)
  12. {
  13. printf("n2(%d) è il massimo", n2);
  14. }
  15. else if(n3>n4 && n3>n5)
  16.  
  17. {
  18. printf("n3(%d) è il massimo", n3);
  19. }
  20. else if(n4>n5)
  21. {
  22. printf("n4(%d) è il massimo",n4);
  23. }
  24. else
  25. {
  26. printf("n5(%d) è il massimo", n5);
  27. }
  28. printf("\n");
  29. if(n1<n2 && n1<n3 && n1<n4 && n1<n5)
  30. {
  31. printf("n1(%d) è il minimo",n1);
  32. }
  33. else if(n2<n3 && n2<n4 && n2<n5)
  34. {
  35. printf("n2(%d) è il minimo", n2);
  36. }
  37. else if(n3<n4 && n3<n5)
  38.  
  39. {
  40. printf("n3(%d) è il minimo", n3);
  41. }
  42. else if(n4<n5)
  43. {
  44. printf("n4(%d) è il minimo",n4);
  45. }
  46. else
  47. {
  48. printf("n5(%d) è il minimo", n5);
  49. }
  50. return 0;
  51. }
  52. /*
  53. //ESERCIZIO 2
  54. #include <stdio.h>
  55. int main(){
  56. int n;
  57. scanf("%d",&n);
  58. (n%2==0) ? printf("Il numero inserito(%d) è pari",n) : printf("Il numero inserito(%d) è dispari",n);
  59. return 0;
  60. }
  61. */
  62. /* ESERCIZIO 3
  63. #include <stdio.h>
  64. int main(){
  65. //versione con char
  66. char c1,c2,c3,c4,c5;
  67. scanf("%5c",&c1,&c2,&c3,&c4,&c5); //leggo 5 caratteri di fila che saranno le 5 cifre
  68. //%5c=%c%c%c%c%c
  69. printf("%c %c %c %c %c",c1,c2,c3,c4,c5);
  70. /* LEGGO UN INTERO DI 5 CIFRE
  71. int n,c1,c2,c3,c4,c5;
  72. scanf("%d",&n);
  73. c1=n%10; // LEGGO ULTIMA CIFRA
  74. n=n/10; // TOLGO ULTIMA CIFRA DAL NUMERO
  75. c2=n%10; //ECC
  76. n=n/10;
  77. c3=n%10;
  78. n=n/10;
  79. c4=n%10;
  80. n=n/10;
  81. c5=n%10;
  82. n=n/10;
  83. printf("%d %d %d %d %d",c5,c4,c3,c2,c1);
  84.  
  85. }*/
  86. /* ESERCIZIO 4
  87. #include <stdio.h>
  88. int main(){
  89. int n,i;
  90. scanf("%d %d",&n,&i);
  91. printf("%d",(((1<<i)&n)!=0) ? 1 : 0);
  92. }*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement