PHP More Exercises: Две задачи ме мъчат!
Здравейте, блъскам си главата с две задачи от More Exercises на PHP Data Types and Variables:
Кодът ми: https://pastebin.com/fs4i0YNU , Judge ми дава 25/100 и гърми с Run Time error na тестовете. Условието:
1. From Left to The Right
You will receive number which represent how many lines we will get as an input. On the next N lines, you will receive a string with 2 numbers separated by single space. You need to compare them. If the left number is greater than the right number, you need to print the sum of all digits in the left number, otherwise print the sum of all digits in the right number.
Examples
Input |
Output |
2 1000 2000 2000 1000 |
2 2 |
4 123456 2147483647 5000000 -500000 97766554 97766554 9999999999 8888888888 |
46 5 49 90 |
Кодът ми: https://pastebin.com/5SSYrucf, judge дава само 70/100, условието:
4. Data Type Finder
You will receive an input until you receive "END". Find what data type is the input. Possible data types are:
· Integer
· Floating point
· Characters
· Boolean
· Strings
Print the result in the following format: "{input} is {data type} type"
Examples
Input |
Output |
5 2.5 true END |
5 is integer type 2.5 is floating point type true is boolean type |
a asd -5 END |
a is character type asd is string type -5 is integer type |
Hint
You can use filter_var.
Здравей, благодаря все пак за съдействието.
Относно първата задача: и това го пробвах, смята правилно -5001 = 4.
Относно втората задача ето какво тествам като input и съответно output, пробвах доста неща...:
5abs
5abs is string type
-5
-5 is integer type
-1.2
-1.2 is floating point type
0
0 is integer type
true
true is boolean type
false
false is boolean type
"true"
"true" is string type
"false"
"false" is string type
"1"
"1" is string type
END
Супер, това, което ми идва на акъла сега е ако имаш изречение, примерно "asd asd asd.", или в това изречение имат числа , думи и т.н.
А това смята ли правилно 100.50 -> 1+0+0+5+0 = 6?
Разбрах къде е грешката на първата. PHP връща warning, защото минавам числата като стринг, но както каза ти при 100.50 връща 6, но при точката WARNING и judge дава runtime error, по една @ пред sumLeft и sumRight даде 100/100 :), продължаваме със следващата :)