+ 1
Check my code is correct or incorrect.......
6 Réponses
+ 1
Thanks
0
Very good display, friend, just ignore the error warning
0
open your link in sololearn web page (not app)
it shows you many errors (left side of code lines marked with orange x ) usually there is lost " or /> or space between attributes
0
Why is my int num1 = 6; showing incorrect
0
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js"></script>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section>
<h2>About Me</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</section>
<footer>
<p>© 2023 My Website. All rights reserved.</p>
</footer>
</body>
</html>
0
#include <stdio.h>
int main()
{
int a,b,c;
printf("enter the value of a_b_c:");
scanf("%d%d%d",&a,&b,&c);
if((a>b)&(a>c))
printf("the value %d is large",a);
else if((b>a)&(b>c))
printf("the value %d is large",b);
else
printf("the value %d is large",c);
return 0;
}