Search:

Type: Posts; User: Muppetlol

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    919

    Query on what I did wrong

    // This is for Circle.Java

    package Circle;
    public class Circle {
    private double radius;
    public Circle()
    {
    radius = 2.0;
    }
    public double getRadius()
  2. Replies
    1
    Views
    945

    Cant fix this

    if(CheckValidInput(intTemp)==true)
    {
    intNumberofTries++;
    numTriesLabel.Text=intNumberofTries.ToString();
    ...
  3. Replies
    12
    Views
    1,491

    so if I put the scanf inside the menu(); and fix...

    so if I put the scanf inside the menu(); and fix the uppercase part , everything will be done?
  4. Replies
    12
    Views
    1,491

    My visual studio is messed up now , the whole...

    My visual studio is messed up now , the whole program doesn't even work now therefore I can't compile and run it. Need to get it repaired this tuesday so until then I need to get this program done...
  5. Replies
    12
    Views
    1,491

    Slightly figured out what you mean. #include...

    Slightly figured out what you mean.


    #include <stdio.h>
    #include <stdlib.h>
    #include <conio.h>
    #include <math.h>
    #include <ctype.h>
    #define PI 3.1416
  6. Replies
    12
    Views
    1,491

    #include #include #include...

    #include <stdio.h>
    #include <stdlib.h>
    #include <conio.h>
    #include <math.h>
    #define PI 3.1416

    void menu(void);
    void kinetic(void);
    void voltage(void);
  7. Replies
    12
    Views
    1,491

    I don't get it , so at the purple part i am...

    I don't get it , so at the purple part i am suppose to write

    choice2 = 0; //initialize choice2 to something OTHER THAN 4
    while(choice2 != 4) { //where 4 equals Quit in your menu
    print the...
  8. Replies
    12
    Views
    1,491

    Loop not working

    #include <stdio.h>
    #include <stdlib.h>
    #include <conio.h>
    #include <math.h>
    #define PI 3.1416

    void main(void)
    {
    int choice,choice2;
    float V,Vp,f,t,kinetic,mass,velocity;
  9. Replies
    2
    Views
    670

    Need help on root element

    http://cboard.cprogramming.com/c-programming/149860-root-element-missing.html

    Topic went out of date and I still need help , dont know how to delete .user file
  10. Replies
    5
    Views
    8,633

    I don't get it , im new to visual studio so I...

    I don't get it , im new to visual studio so I don't know what you mean by deleting .user file (after backing it up)
  11. Replies
    5
    Views
    8,633

    When i start visual studio , i tried to open any...

    When i start visual studio , i tried to open any file and it says : One or more projects in the solution were not loaded correctly.Please see the Output Window for details.

    The output window shows...
  12. Replies
    5
    Views
    8,633

    Root element is missing

    I started my visual studio 2010 and realise i could not write any file.

    It says my root element is missing , clicked it and it showed me this.


    <?xml version="1.0" encoding="utf-8"?>
    <Project...
  13. Replies
    3
    Views
    1,037

    Calculation error

    #include <stdio.h>
    #include <stdlib.h>
    #include <math.h>

    void main(void)
    {
    //declaration
    float x, y, distance, slope;

    //intialization
  14. Replies
    9
    Views
    1,233

    I wasn't taught to use int as main and return 0 ...

    I wasn't taught to use int as main and return 0

    But its pretty nice to see someone from the same country as me , Singapore , who is able to help me out. Thanks anyway (:
  15. Replies
    9
    Views
    1,233

    so i did a small change and it ended up like this...

    so i did a small change and it ended up like this


    #include <stdio.h>
    #include <stdlib.h>
    #include <math.h>

    void main(void)
    {
    //declaration
  16. Replies
    9
    Views
    1,233

    Sorry I just start C Programming like a month ago...

    Sorry I just start C Programming like a month ago so I'm still unsure about the usage of some commands like the one you said about single quotes. Do I just change void main(void) to int main(void)??...
  17. Replies
    9
    Views
    1,233

    Problem with specific command

    #include <stdio.h>
    #include <stdlib.h>
    #include <math.h>

    void main(void)
    {
    //declaration
    int Np00000, Ns00000;
    float Vp00000, Vs00000;
    char A, B, C, D, reply;
Results 1 to 17 of 17