Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #44.2K
~2K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for geeknick

[QUOTE=geeknick;1695799][URL="http://graphingvariousfunctions.wordpress.com/2011/11/18/how-to-solve-linear-equations-in-10th-grade/"]Solving linear equations[/URL]? It says I have to solve -3k + 4 = 8k - 15 - 6k - 11 On the problem, do I combine like terms on one side first? Like the 8k and the 6k? If so do I add them or subtract them? Can someone please …

Member Avatar for WaltP
0
117
Member Avatar for klimburt

[QUOTE=klimburt;1693733]does somone knows how to creatye a program that well accept five members and display the lowest number[/QUOTE] [CODE]#include <stdio.h> #include <conio.h> void main() { int i; int num[5],min; printf("Need Input of any 5 numbers"); for(i=0;i<5;i++) { scanf("%d",&num[i]); } min=num[0]; for(i=0;i<5;i++) { if(min<num[i]) { min=num[i]; } } printf("Lowest Number Detected …

Member Avatar for lokeshg
0
303
Member Avatar for IwalkAlone

[CODE]#include<stdio.h> #include<conio.h> void main() { float a,b,c; char sign,answer; clrscr(); answer='y'; do { printf("Enter your choice of operator\n"); printf("+ for addition\n"); printf("- for subtraction\n"); printf("* for multiplication\n"); printf("/ for division\n"); sign=getche(); printf("\nEnter two numbers\n"); scanf("%f %f",&a,&b); //scanf("%c",&sign); switch(sign) { case '+': c=a+b; printf("The addition is %f\n",c); break; case '-': c=a-b; …

Member Avatar for lokeshg
0
2K

The End.