Advertisement
marcgruita

salut anca

Nov 20th, 2022
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.33 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. // 5
  5. //int solve5(int n);
  6. //
  7. //int main() {
  8. //    int n;
  9. //    scanf("%d", &n);
  10. //    printf("%d has %d significand zeroes", n, solve5(n));
  11. //    return 0;
  12. //}
  13. //
  14. //int solve5(int n) {
  15. //    int ans = 0;
  16. //
  17. //    while (n % 2 == 0 && n) {
  18. //        ans++;
  19. //        n /= 2;
  20. //    }
  21. //
  22. //    return ans;
  23. //}
  24.  
  25. // 6
  26. //void solve6(int n);
  27. //
  28. //int main() {
  29. //    int n;
  30. //    scanf("%d", &n);
  31. //    solve6(n);
  32. //    return 0;
  33. //}
  34. //
  35. //void solve6(int n) {
  36. //    unsigned char *representation = (unsigned char *)&n;
  37. //
  38. //    printf("%d\n%d\n%d\n%d", representation[0], representation[1], representation[2], representation[3]);
  39. //}
  40.  
  41. // 7
  42. //int main() {
  43. //    float a, b;
  44. //    scanf("%f", &a);
  45. //    scanf("%f", &b);
  46. //
  47. //    printf("%d\n", (int)(a + b));
  48. //    printf("%d\n", (int)(a - b));
  49. //    printf("%d\n", (int)(a * b));
  50. //    printf("%d\n", (int)(a / b));
  51. //
  52. //    printf("The minimum is %f", a < b ? a : b);
  53. //    return 0;
  54. //}
  55.  
  56. // 8
  57. //int main() {
  58. //    char str[20];
  59. //    scanf("%19s", str);
  60. //
  61. //    int val = 32;
  62. //    int i;
  63. //    unsigned long n = strlen(str);
  64. //    for (i = 0; i < n; i++) {
  65. //        printf("Uppercase of %c is %c\n", str[i], str[i] - val);
  66. //        printf("Uppercase of %c is %c\n", str[i], str[i] & ~val);
  67. //    }
  68. //}
  69.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement