Friday, January 8, 2010

Help me with this C++ coding problem please?

Write a nested loop that displays a table consisting of 3 rows and 11 columns. The first column should contain the numbers 1 through 3. The second and subsequent columns should contain the result of multiplying the number in the first column by the numbers 0 through 9. The table will look similiar to the following chart. Use two ';for'; statement.


1 0 1 2 3 4 5 6 7 8 9


2 0 2 4 6 8 10 12 14 16 18


3 0 3 6 9 12 15 18 21 24 27





Thanks allHelp me with this C++ coding problem please?
#include%26lt;iostream%26gt;





using namespace std;





int main()


{


for( int i=1; i %26lt;= 3; i++ ) {


cout %26lt;%26lt; endl %26lt;%26lt; i;


for( int j=0; j %26lt;= 9; j++ ) {


cout %26lt;%26lt; '; '; %26lt;%26lt; (j*i);


}


}





return 0;


}Help me with this C++ coding problem please?
ill give you a hint.....





u need a counter and 2 variables(3 INTs)....
#include%26lt;iostream.h%26gt;


#include%26lt;conio.h%26gt;


#include%26lt;math.h%26gt;


void main()


{


clrscr();


for(int i=1;i%26lt;=3;i++)


{


for(int j=10;j%26lt;21;j++)


{


cout%26lt;%26lt;abs(j-11)*i;


}


cout%26lt;%26lt;'\n';


}


getch();


}
gosh, you didn't even try
  • hair shampoo
  • tca chemical peel
  • caption
  • facial scrub
  • Do you work in billing/coding for a Chiropractor??

    I'm working with a new Chiropractor fresh out of school. I think he's underbilling, but he seems to think he isn't. I want to help him, but don't have the knowledge to back up my suspicion that he is underbilling. What do you bill for for a regular visit?Do you work in billing/coding for a Chiropractor??
    Chiropractor under billing. I reviewed a file in which a D.C. was insurance approved for 400 plus chiropractic visits!! The trick to D.C. billing is that the items are not high take one at a time. But, when you add all of these goofy procedures or manipulations the sum is is enormous. Why are most D.C.s adverting for post-injury patients? Could it be that a third party payer is responsible for the bill? If you are paying out of your own funds then you may be getting a break on the bill. Best example: item for ';De-tension.'; When asked the D.C. explained that the patient was placed in a room for 30 minutes to lower this tension level!Do you work in billing/coding for a Chiropractor??
    Well I can certainly help you. But it all depends on what thgins he does in the office. Does he just do adjustments? Does he also do physical therapy? I would need to know more to help you. What is he billing now? Like initial visit and follow up visit and I need to knbow how many patients he sees in a day. Then I can help you.





    Well like I asked I would need to know his daily PV( patient visits). I mean if he is at a PV of 50 per day he could do what he is doing and be fine. So it depends. However the kid probably has a low daily PV. Thus he must learn to bill insurance at a high fee. It depends on the area. But 35 is in general way too low. Mabey charge 45 self pay and 60 insurance pay for adjustment. Withe physical therapy he should be averaging maybe 90 per visit and charging insurance like 120. As a rule you charge as much as the insurance carrier will pay or slightly under that. A lot of DCs fresh out of school fail because they do not know the ropes and are too idealistic. So I would really need to know more like PV per day and what physical therapy he does and more. If you want to talk about this e mail me. Where did he go to school?





    Example:





    Manipulation...60.00


    Traction..45.00


    Ultrasound...45.00


    Total..........................


    150.00





    Example: Injury patient..





    Initial exam..225.00


    x rays.350.00


    Manipulation...60.00


    Traction..45.00


    Ultrasound..45.00


    Total.725.00

    Please help! HTML / JavaScript password coding problem!?

    Here is my code! My problem is when I do this from my computer it works great, but as soon as I upload it to the server it no longer works! The page shows up fine but my login box does not pop up!





    %26lt;html%26gt;


    %26lt;HEAD%26gt;





    %26lt;meta http-equiv=';Content-Type'; content=';text/html; charset=utf-8';%26gt;


    %26lt;style type=';text/css';%26gt;


    %26lt;!--


    .style13 {


    color: #CC66CC;


    font-weight: bold;


    }


    .style16 {font-size: 18px}


    .style22 {font-size: 16px}


    --%26gt;


    %26lt;/style%26gt;%26lt;BODY%26gt;


    %26lt;center%26gt;


    %26lt;p%26gt;%26lt;img src=';ORIGINAL LOGO.JPG'; alt=';Crystal Boutique'; width=';300'; height=';100'; longdesc=';http://www.x.com';%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt;%26lt;font size=';5'; face=';Perpetua';%26gt; %26lt;span class=';style13';%26gt;Please Sign In!%26lt;/span%26gt;%26lt;/font%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt;聽%26lt;/p%26gt;


    %26lt;/center%26gt;


    %26lt;SCRIPT LANGUAGE=';JavaScript';%26gt;


    function LogIn(){


    loggedin=false;


    username=';';;


    password=';';;


    username=prompt(';Username:';,';';);


    username=username.toLowerCase();


    password=prompt(';Password:';,';';);


    password=password.toLowerCase();

















    --%26gt;Enter Username/Password Below %26lt;--


    if (username==';ashley00'; %26amp;%26amp; password==';2838';) {


    loggedin=true;


    window.location=';http://216.105.55.115鈥?br>

    }


    if (username==';evi01'; %26amp;%26amp; password==';2594';) {


    loggedin=true;


    window.location=';http://216.105.55.115鈥?br>

    }


    if (username==';kristen02'; %26amp;%26amp; password==';6510';) {


    loggedin=true;


    window.location=';http://216.105.55.115鈥?br>

    --%26gt;Enter Username/Password Above %26lt;--





    if (loggedin==false) {


    alert(';Sorry! Invalid Login Information!';);


    }


    }


    %26lt;/SCRIPT%26gt;





    %26lt;center%26gt;


    %26lt;form%26gt;


    %26lt;input type=button value=';Sign In!'; onClick=';LogIn()';%26gt;


    %26lt;/form%26gt;


    %26lt;/center%26gt;


    %26lt;p%26gt;聽%26lt;/p%26gt;


    %26lt;p align=';center';%26gt;聽%26lt;/p%26gt;


    %26lt;p align=';center'; class=';style16';%26gt;%26lt;span class=';style9 style22';%26gt;%26lt;font face=';Perpetua';%26gt;If you are having problems logging in click %26lt;a href=';mailto:x@comcast.net';%26gt;here%26lt;/a%26gt; to report it.%26lt;/font%26gt; %26lt;font face=';Perpetua';%26gt;%26lt;br%26gt;


    Click %26lt;a href=';http://www.x.com';%26gt;here%26lt;/a%26gt; to return to main page.%26lt;/font%26gt;%26lt;font face=';Perpetua';%26gt;%26lt;/font%26gt;%26lt;/span%26gt; %26lt;/p%26gt;


    %26lt;/center%26gt;


    %26lt;/body%26gt;


    %26lt;/html%26gt;Please help! HTML / JavaScript password coding problem!?
    You had a number of syntax errors. I corrected those. There are some style and convention issues which I did not correct, but those will not prevent the proper functioning of the code. I tagged my changes with the HTML comment blocks that include the string ';ruie'; to make it easier to identify them. I tested only in Firefox 2 and IE7.





    %26lt;html%26gt;


    %26lt;HEAD%26gt;





    %26lt;meta http-equiv=';Content-Type'; content=';text/html; charset=utf-8';%26gt;


    %26lt;style type=';text/css';%26gt;


    %26lt;!--


    .style13 {


    color: #CC66CC;


    font-weight: bold;


    }


    .style16 {font-size: 18px}


    .style22 {font-size: 16px}


    --%26gt;


    %26lt;/style%26gt;


    %26lt;!-- ruie - move script block to head --%26gt;


    %26lt;SCRIPT LANGUAGE=';JavaScript';%26gt;


    function LogIn(){


    loggedin=false;


    username=';';;


    password=';';;


    username=prompt(';Username:';,';';);


    username=username.toLowerCase();


    password=prompt(';Password:';,';';);


    password=password.toLowerCase();


    //--%26gt;Enter Username/Password Below %26lt;-- %26lt;!-- ruie - js comment --%26gt;


    if (username==';ashley00'; %26amp;%26amp; password==';2838';) {


    loggedin=true;


    window.location=';http://216.105.55.鈥?ruie - ??? --%26gt;


    }


    if (username==';evi01'; %26amp;%26amp; password==';2594';) {


    loggedin=true;


    window.location=';http://216.105.55.鈥?ruie - ??? --%26gt;


    }


    if (username==';kristen02'; %26amp;%26amp; password==';6510';) {


    loggedin=true;


    window.location=';http://216.105.55.鈥?ruie - ??? --%26gt;


    //--%26gt;Enter Username/Password Above %26lt;-- %26lt;!-- ruie - js comment --%26gt;


    }%26lt;!-- ruie - close if block --%26gt;


    if (!loggedin) { %26lt;!-- ruie - simplify syntax --%26gt;


    alert(';Sorry! Invalid Login Information!';);


    }


    }


    %26lt;/SCRIPT%26gt;


    %26lt;/head%26gt; %26lt;!-- ruie - close head --%26gt;


    %26lt;BODY%26gt;


    %26lt;center%26gt;


    %26lt;p%26gt;%26lt;img src=';ORIGINAL LOGO.JPG'; alt=';Crystal Boutique'; width=';300'; height=';100'; longdesc=';http://www.x.com';%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt;%26lt;font size=';5'; face=';Perpetua';%26gt; %26lt;span class=';style13';%26gt;Please Sign In!%26lt;/span%26gt;%26lt;/font%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt; %26lt;/p%26gt;


    %26lt;form%26gt;


    %26lt;input type=button value=';Sign In!'; onClick=';LogIn()';%26gt;


    %26lt;/form%26gt;


    %26lt;/center%26gt;


    %26lt;p%26gt; %26lt;/p%26gt;


    %26lt;p align=';center';%26gt; %26lt;/p%26gt;


    %26lt;p align=';center'; class=';style16';%26gt;%26lt;span class=';style9 style22';%26gt;%26lt;font face=';Perpetua';%26gt;If you are having problems logging in click %26lt;a href=';mailto:x@comcast.net';%26gt;here%26lt;/a%26gt; to report it.%26lt;/font%26gt; %26lt;font face=';Perpetua';%26gt;%26lt;br%26gt;


    Click %26lt;a href=';http://www.x.com';%26gt;here%26lt;/a%26gt; to return to main page.%26lt;/font%26gt;%26lt;font face=';Perpetua';%26gt;%26lt;/font%26gt;%26lt;/span%26gt; %26lt;/p%26gt;


    %26lt;/center%26gt;


    %26lt;/body%26gt;


    %26lt;/html%26gt;Please help! HTML / JavaScript password coding problem!?
    Javascript is a really bad solution for a password. Anyone can look at your source code and even modify your script however they like.





    If you want a password you need to do something on the server side, not the client side.

    Anyone know what type of coding or programming this is?

    ... lin0\itap0 { \par 49. Antioch provides a solid example of a truly \'93catholic\'94 community because it \par 1) was inclusive in its welcome to Jews and Gentiles; 2) sided with Peter, \par the first pope; 3) was universally acknowledged to be a better community than \par }\pard \ql \li0\ri0\sl-243\slmult1\nowidctlpar\tx20鈥?{54. The early Church ...





    I found this on a website... is anyone familiar with the program or method used to encode the formatting on the original text?Anyone know what type of coding or programming this is?
    LaTeX. It is a descriptive language for word processing.





    http://www.pages.drexel.edu/~pyo22/stude鈥?/a>


    http://www.math.cam.ac.uk/undergrad/cata鈥?/a>Anyone know what type of coding or programming this is?
    Roff?

    Will they be resseting the leaderboards and ranks on the cod world at war when the game is released?

    for xbox 360 and also the ranks?Will they be resseting the leaderboards and ranks on the cod world at war when the game is released?
    Yes they will.Will they be resseting the leaderboards and ranks on the cod world at war when the game is released?
    yes it is just like any new game that comes out to the public


    with a demo first.1

    Whats the name of that song played with that PS3 Coded Arms assault TGS trailer?

    I have no idea who sings the song.Whats the name of that song played with that PS3 Coded Arms assault TGS trailer?
    get it from a website

    I am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?

    I am still on 0 perstige but i am 6th prestige on cod4 so..


    Just leave yur gtI am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?
    Well, if you're good at Call of Duty 4 then you're probably decent at Call of Duty World at War. I think you can be a better player on your own if you're 6th prestige on Cod 4.





    Just keep working hard, try class combos. If you really need help, I'd rather tutor you in Call of Duty 4. Think about it.





    Oh, and just to add. Call of Duty 4 %26gt; Call of Duty World at War.I am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?
    Ok prestiege is how people judge most of the time. If your 0 prestiege 65 DONT rush into prestiege I made the mistake. Usually its how you think of yourself in gameplay not others. Once I got like 28 kills without dying and didnt even notice we were losing. So its all how you play the game. :)
    Prestige doesn't matter my friend. And play alot of 1v1, it will make you better.


    And by the way, CoD4 is way better.
  • hair shampoo
  • printer toner
  • caption
  • facial scrub
  •