Исправить переведённый код с Pascal - C#

Узнай цену своей работы

Формулировка задачи:

Сам код на Паскале:
Листинг программы
  1. var
  2. s, s1: string;
  3. i, k: integer;
  4. function canbe(s: string): boolean;
  5. begin
  6. Result := false;
  7. if length(s) = 0 then exit;
  8. for var k := 1 to length(s) do
  9. if (s[k] < '0') or (s[k] > '4') then
  10. exit;
  11. Result := true;
  12. end;
  13. function ToDec(s: string): integer;
  14. var
  15. c, l: integer;
  16. begin
  17. Result := 0;
  18. for var i := length(s) downto 1 do
  19. begin
  20. Val(s[i], c, l);
  21. Result := Result + c * Round(Power(5, length(s) - i));
  22. end;
  23. end;
  24. begin
  25. ReadLn(s); s := ' ' + Copy(s, 1, Pos('.', s));
  26. i := 1; k := 0;
  27. while i < length(s) do
  28. begin
  29. while (s[i] = ' ') and (s[i] = '.') and (i < length(s)) do
  30. i := i + 1;
  31. s1 := '';
  32. while (s[i] <> ' ') and (s[i] <> '.') and (i < length(s)) do
  33. begin
  34. s1 := s1 + s[i];
  35. i := i + 1;
  36. end;
  37. if canbe(s1) then
  38. k := k + ToDec(s1);
  39. i := i + 1;
  40. end;
  41. WriteLn(k);
  42. end.
Мой переведённый код:
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Program12
  7. {
  8. class Program
  9. {
  10. static bool canbe(string s)
  11. {
  12. var Result = false;
  13. if (s.Length == 0)
  14. {
  15. return Result;
  16. }
  17. for (int k = 0; k < s.Length; k++)
  18. {
  19. if (s[k] < '0' || s[k] > '4')
  20. {
  21. return Result;
  22. }
  23. }
  24. Result = true;
  25. return Result;
  26. }
  27. static int ToDec(string s)
  28. {
  29. int c = 0, l = 0;
  30. double Result = 0;
  31. for (int i = s.Length - 1; i >= 0; i--)
  32. {
  33. Convert.ToInt32(s[i]);
  34. Convert.ToInt32(c);
  35. Convert.ToInt32(l);
  36. Result += c * Math.Round(Math.Pow(5, s.Length - i));
  37. }
  38. return 0;
  39. }
  40. static void Main(string[] args)
  41. {
  42. string s1;
  43. string s = Console.ReadLine();
  44. s = " " + s.Substring(1, s.IndexOf("."));
  45. int i = 0, k = 0;
  46. while (i < s.Length)
  47. {
  48. while (s[i] == ' ' && s[i] == '.' && i < s.Length)
  49. {
  50. i++;
  51. }
  52. s1 = "";
  53. while (s[i] != ' ' && s[i] != '.' && i < s.Length)
  54. {
  55. s1 += s[i];
  56. i++;
  57. }
  58. if (canbe(s1))
  59. {
  60. k += ToDec(s1);
  61. }
  62. i++;
  63. }
  64. Console.WriteLine(k);
  65. }
  66. }
  67. }
Помогите исправить, заранее спасибо. Вот что вводится в программу: 100 у3 AS42 AS 22 77w. Вывод: 37

Решение задачи: «Исправить переведённый код с Pascal»

textual
Листинг программы
  1. static bool canbe(string s)
  2. {
  3.     if (s.Length == 0) return false;
  4.  
  5.     for (int k = 0; k < s.Length; k++)
  6.     {
  7.         if (s[k] < '0' || s[k] > '4')
  8.         {
  9.             return false;
  10.         }
  11.     }
  12.  
  13.     return true;
  14. }
  15.  
  16. static int ToDec(string s)
  17. {
  18.     int c = 0, Result = 0;
  19.  
  20.     for (int i = 1; i <= s.Length; i++) // 1001
  21.     {
  22.         c = s[i-1] - '0';
  23.         Result += c * (int)Math.Round(Math.Pow(5, s.Length - i));
  24.     }
  25.  
  26.     return Result;
  27. }
  28.  
  29. static void Main(string[] args)
  30. {
  31.     string s1, s = Console.ReadLine();
  32.     int i = 0, k = 0;
  33.  
  34.     while (i < s.Length)
  35.     {
  36.         while ((s[i] == ' ' || s[i] == ',') && i < s.Length)
  37.         {
  38.             i++;
  39.         }
  40.  
  41.         s1 = "";
  42.         while (i < s.Length-1)
  43.         {
  44.             if (s[i] == ' ' || s[i] == ',' || s[i] == '.') break;
  45.             s1 += s[i];
  46.             i++;
  47.         }
  48.                
  49.         if (canbe(s1)) k += ToDec(s1);
  50.                
  51.         i++;
  52.     }
  53.     Console.WriteLine(k);
  54. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

12   голосов , оценка 3.667 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут