15,993,913 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Aisha Yosuf (Top 12 by date)
Aisha Yosuf
19-Jan-23 7:14am
View
Is there something else that I can try doing to run my code correctly?
Aisha Yosuf
19-Jan-23 6:26am
View
Thank you for your comment. I added the following to the conditions:
if(i > mid)
a[k] = aux[j++];
else if(j > hi)
a[k] = aux[i++];
else if(less(aux[j], aux[i]))
a[k] = aux[j++];
else
a[k] = aux[i++];
But it is still not running
Aisha Yosuf
9-Jan-23 11:05am
View
Thank you so much I aprreciate your help! :)
Aisha Yosuf
9-Jan-23 10:55am
View
The above error says to do so, but I can't remember how I would declare GoodTimes in a file named GoodTimes.java
Aisha Yosuf
9-Jan-23 10:49am
View
when I ran the code I got an error that says class GoodTimes is public, should be declared in a file named GoodTimes.java
Aisha Yosuf
9-Jan-23 10:44am
View
An error occured : error: cannot find symbol
Aisha Yosuf
22-Dec-22 7:59am
View
Thank you!
Aisha Yosuf
22-Dec-22 7:59am
View
Thank you so much! :)
Aisha Yosuf
12-Dec-22 12:44pm
View
Thank you so much! Before you replied I was able to figure it out. I just had to look carefully at how the other two shapes were printed; by creating a new Triangle or square or rectangle. Once again, thank you!! I appreciate your help :)
Aisha Yosuf
12-Dec-22 11:02am
View
Deleted
Thank you for your response! Also, when I tried following the format of your solution to print the triangle class it also says the symbol is not found. I am confused as to why this error continues to appear.I tried the following:
int a = 12;
int b = 20;
int c = 15;
System.out.println("The area of the triangle is: " + triangle.area());
System.out.println("The perimeter of the triangle is: " + triangle.perimeter());
Aisha Yosuf
12-Dec-22 11:02am
View
Deleted
Thank you for your response! Also, when I tried following the format of your solution to print the triangle class it also says the symbol is not found. I am confused as to why this error continues to appear.
Aisha Yosuf
10-Dec-22 11:58am
View
Deleted
I'm still unsure how exactly to do so.
Show More