Próbuję wymyślić program, który oblicza oceny podane z danych wejściowych użytkowników. Próbuję również ustalić, jak wysoki lub niski może być sygnał wejściowy użytkownika (tj. 0 < = lub> = 100). Ale kiedy używać przecinku trzyma daje mi ten błąd: „Operator«<»nie może być stosowany do argumentów typu«dziesiętnym»i«podwójne»”Operatora "<" nie można zastosować do argumentów typu "dziesiętny" i "podwójny"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Grade_Program
{
class Program
{
static void Main(string[] args)
{
string First;
string Last;
First = "Cristiano";
Last = " Ronaldo";
Console.Write("Please enter student name <First Last>: ");
Console.WriteLine(First + Last);
Console.WriteLine(" ");
Console.WriteLine("*************NOTE**********************************************");
Console.WriteLine("*** Be sure to include decimal point for scores. ***");
Console.WriteLine("*** !!!All score should range from 0.00 to 100.00 !! ***");
Console.WriteLine("*** ***");
Console.WriteLine("*** For example : 80.50 ***");
Console.WriteLine("***************************************************************");
Console.WriteLine(" ");
decimal Exam_1;
decimal Exam_2;
decimal Exam_3;
decimal Assignment_1;
decimal Assignment_2;
Console.Write("Please enter score for Exam 1 <Example: 100.0>: ");
Exam_1 = Convert.ToDecimal(Console.ReadLine());
if (Exam_1 < 0.0 | Exam_1 > 100.0)
Console.Write("Exam score cannot be less than 0. or greater than 100.0. Please re-enter the score for Exam 1 <Example: 95.0>:");
Exam_1 = Convert.ToDecimal(Console.ReadLine());
Console.Write("Please enter score for Exam 2 <Example: 0.0>: ");
Exam_2 = Convert.ToDecimal(Console.ReadLine());
proszę pisać dokładną linię kodu, który rzuca błąd. –
Wypróbuj '0M <= myDecimal || 100M> = myDecimal' (ref: https://msdn.microsoft.com/en-us/library/364x0z75.aspx) – souldzin
W większości przypadków ten błąd pojawia się z powodu problemu z przesyłaniem. Po wklejeniu kodu możemy dokładnie podać poprawną odpowiedź. – Sasa1234